forked from storefront-foundation/react-storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.51 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-storefront",
"version": "8.18.3",
"description": "Build and deploy e-commerce progressive web apps (PWAs) in record time.",
"module": "./index.js",
"license": "Apache-2.0",
"engines": {
"node": ">=8.10.0"
},
"repository": "https://github.com/storefront-foundation/react-storefront",
"bugs": "https://github.com/storefront-foundation/react-storefront/issues",
"directories": {
"test": "test"
},
"watch": {
"push-build": {
"patterns": [
"src"
],
"ignore": "*/index.js",
"extensions": "js",
"quiet": false
}
},
"scripts": {
"release": "npm run build && cd dist && npm publish && cd ..",
"test": "jest",
"watch": "npm-watch",
"push-build": "yarn build && cd dist && yalc push && cd ..",
"create-indexes": "create-index -ri --ignoreDirectories src",
"clean": "mkdir -p dist; cd dist; ls | grep -v 'node_modules\\|package-lock.json' | xargs rm -rf; cd ../;",
"build": "npm run build:prep && NODE_ENV=production npm run build:sources",
"build:prep": "npm run clean && npm run create-indexes && cp README.md package.json dist",
"build:sources": "babel ./src --source-maps --out-dir dist",
"docs": "mkdir -p docs/build && PRESERVE_MARKDOWN=true NODE_ENV=docs babel-node docs/buildDocs d.js",
"storybook": "start-storybook -c ./.storybook",
"storybook-docs": "mkdir -p .storybook/build && PRESERVE_MARKDOWN=true NODE_ENV=docs babel-node .storybook/createMetadata d.js",
"build-storybook": "build-storybook -c .storybook -o .storybook/build && npm run storybook-docs"
},
"dependencies": {
"chalk": "^3.0.0",
"clsx": "^1.0.4",
"csso": "^4.0.3",
"delegate": "^3.2.0",
"formidable": "^1.2.1",
"glob": "^7.1.6",
"isomorphic-unfetch": "^3.0.0",
"next-offline": "^5.0.0",
"qs": "^6.9.0",
"react-image-magnify": "^2.7.4",
"react-swipeable-views": "0.13.3",
"react-swipeable-views-utils": "0.13.3",
"react-visibility-sensor": "^5.1.1",
"resize-observer-polyfill": "^1.5.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-clear-require-cache-plugin": "^0.0.5"
},
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@babel/node": "^7.10.0",
"@babel/plugin-proposal-class-properties": "^7.10.0",
"@babel/plugin-transform-runtime": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"@babel/preset-react": "^7.10.0",
"@material-ui/core": "4.11.2",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "4.5.2",
"@storybook/addon-knobs": "^5.3.13",
"@storybook/react": "^5.2.6",
"@svgr/webpack": "^4.3.3",
"babel-loader": "^8.0.6",
"babel-plugin-rewire": "^1.2.0",
"babel-plugin-transform-imports": "^2.0.0",
"create-index": "^2.6.0",
"documentation": "moovweb/documentation#feature/preserve-markdown",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"jest": "^25.4.0",
"jest-enzyme": "^7.1.2",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^16.2.2",
"next": "^10.0.3",
"npm-watch": "^0.6.0",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^16.8.0",
"react-docgen": "^5.1.0",
"react-dom": "^16.8.0",
"service-worker-mock": "^2.0.5",
"sync-folders": "^2.0.0",
"yalc": "^1.0.0-pre.34"
},
"peerDependencies": {
"@material-ui/core": "4.11.2",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "4.11.2",
"next": "^10.0.3"
}
}