-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
114 lines (114 loc) · 3.9 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-storefront",
"version": "9.0.0",
"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": "npm run build && cd dist && yalc push --sig && 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": "swc ./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",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"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",
"lodash": "^4.17.21",
"material-ui-popup-state": "^2.0.0",
"next": "^12.0.7",
"next-offline": "^5.0.0",
"qs": "^6.9.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-image-magnify": "^2.7.4",
"react-swipeable-views": "^0.14.0",
"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",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.0",
"@mui/lab": "^5.0.0-alpha.58",
"@mui/material": "^5.2.2",
"@storybook/addon-knobs": "^5.3.13",
"@storybook/react": "^5.2.6",
"@svgr/webpack": "^4.3.3",
"@swc/cli": "^0.1.52",
"@swc/core": "^1.2.118",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-jest": "^27.4.6",
"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",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^25.4.0",
"jest-enzyme": "^7.1.2",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^16.2.2",
"npm-watch": "^0.6.0",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react-docgen": "^5.1.0",
"service-worker-mock": "^2.0.5",
"sync-folders": "^2.0.0",
"yalc": "^1.0.0-pre.34"
},
"peerDependencies": {
"@mui/icons-material": "^5.2.0",
"@mui/lab": "^5.0.0-alpha.58",
"@mui/material": "^5.2.2",
"@mui/styles": "^5.2.2"
}
}