-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 966 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
33
34
35
36
37
38
39
40
41
{
"name": "commons",
"version": "1.0.0",
"description": "common libs",
"main": "index.js",
"repository": "https://github.com/geeknight-march-2021/common.git",
"author": "knights",
"license": "MIT",
"dependencies": {
"@material-ui/core": "4.11.3",
"bfj": "^7.0.2",
"cross-env": "^7.0.3",
"fs-extra": "^9.1.0",
"react": "17.0.1",
"react-dev-utils": "^11.0.4",
"react-dom": "17.0.1",
"react-modal": "^3.12.1",
"rimraf": "^3.0.2",
"styled-components": "^5.2.1",
"webpack": "^4.44.2"
},
"devDependencies": {
"webpack-cli": "^4.5.0"
},
"scripts": {
"build": "node scripts/build.js",
"build-dev": "rimraf build && cross-env NODE_ENV=development npx webpack"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}