forked from Weaverse/weaverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "weaverse-sdks",
"version": "2.6.0",
"description": "Weaverse SDKs monorepo.",
"private": true,
"license": "MIT",
"scripts": {
"dev": "npm run dev:pkg -- --filter=./templates/pilot",
"dev:pkg": "cross-env LOCAL_DEV=true turbo dev --no-daemon --parallel --filter=./packages/*",
"clean": "bash ./scripts/clean.sh",
"up": "bash ./scripts/upgrade-packages.sh",
"update-deps": "bash ./scripts/update-deps.sh",
"test": "turbo run test",
"build": "turbo run build --no-daemon",
"build:graph": "turbo run build --graph=repo-graph.svg",
"prepare": "npm run build",
"preprepare": "husky install",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"typecheck": "turbo typecheck --parallel"
},
"workspaces": [
"templates/pilot",
"packages/core",
"packages/react",
"packages/shopify",
"packages/hydrogen"
],
"devDependencies": {
"@types/node": "^20.8.10",
"@types/react": "^18.2.35",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"cross-env": "^7.0.3",
"eslint": "8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"tsup": "^7.2.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"optionalDependencies": {
"@esbuild/darwin-x64": "^0.19.5",
"turbo-darwin-arm64": "^1.10.16"
},
"engines": {
"node": ">=16.13"
},
"prettier": {
"semi": false,
"bracketSpacing": true,
"importOrder": [
"^@(.*)/(.*)$",
"^~/(.*)$",
"^[./]"
]
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,yml,json}": [
"prettier --write --ignore-unknown",
"nr lint:fix"
]
}
}