-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
32 lines (32 loc) · 851 Bytes
/
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
{
"private": true,
"workspaces": [
"examples/*",
"use-shopping-cart",
"documentation"
],
"scripts": {
"dev": "yarn workspace use-shopping-cart dev",
"test": "yarn workspace use-shopping-cart test:watch",
"dev:gatsby": "yarn workspace ecommerce-gatsby-tutorial start",
"build:gatsby": "yarn workspace use-shopping-cart build && yarn workspace ecommerce-gatsby-tutorial build",
"dev:docs": "yarn workspace use-shopping-cart build && yarn workspace documentation start"
},
"dependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"shx": "^0.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,.d.ts,ts,tsx,mdx}": "prettier --write"
},
"devDependencies": {
"webpack-dev-server": "3.10.3"
}
}