-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "commerce",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"site/*"
],
"nohoist": [
"**/@nomiclabs/**"
]
},
"scripts": {
"build": "turbo run build --scope=next-commerce --include-dependencies --no-deps",
"dev": "turbo run dev",
"dev:web": "turbo run dev --scope=next-commerce --include-dependencies --no-deps",
"start:node": "yarn workspace contract start:node",
"dev:deploy": "yarn workspace contract deploy:local",
"test:deploy": "yarn workspace contract deploy:rinkeby",
"start": "turbo run start",
"types": "turbo run types",
"prettier-fix": "prettier --write ."
},
"devDependencies": {
"husky": "7.0.4",
"lint-staged": "12.4.1",
"prettier": "2.7.1",
"turbo": "1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "turbo run lint"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --write",
"git add"
],
"**/*.{md,mdx,json}": [
"prettier --write",
"git add"
]
},
"packageManager": "yarn@3.2.1"
}