-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "react-storefront",
"version": "4.0.0",
"description": "Build and deploy e-commerce progressive web apps in record time.",
"repository": "https://github.com/moovweb/react-storefront",
"license": "UNLICENSED",
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x"
},
"devDependencies": {
"@material-ui/core": "^1.0.0",
"@material-ui/icons": "^1.0.0",
"gh-pages": "^1.2.0",
"glob": "^7.1.3",
"husky": "^1.1.2",
"lerna": "^2.11.0",
"mobx": "^4.1.0",
"mobx-react": "^5.0.0",
"mobx-state-tree": "^2.0.1",
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-jss": "^8.3.5",
"react-router-dom": "^4.2.2",
"react-universal-component": "^2.9.0",
"webpack": "^3.11.0"
},
"scripts": {
"precommit": "gulp addLicense",
"publish": "lerna publish --force-publish=* --yes",
"docs": "pushd packages/react-storefront; yarn docs; popd;",
"deploy-storybook": "gh-pages -d packages/react-storefront/storybook-static",
"test": "pushd packages/react-storefront; yarn test; popd;",
"add-license": "node ./tasks/addLicense"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"*"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn add-license"
}
}
}