-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.3 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
{
"name": "frontend-template",
"version": "0.1.2",
"private": true,
"main": "src/index.jsx",
"homepage": "./",
"scripts": {
"analyze": "yarn profile && yarn analyzer",
"analyzer": "webpack-bundle-analyzer stats.json",
"build": "yarn clean && yarn compile",
"clean": "rimraf build && rimraf stats.json",
"compile": "webpack --mode production --config config/production/webpack.js",
"lint": "npx eslint src/*.jsx src/**/*.jsx",
"profile": "webpack --config config/production/webpack.js --profile --json > stats.json",
"start": "webpack-dev-server --mode development --config config/development/webpack.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pie-dao/frontend-template.git"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/runtime": "^7.6.3",
"@fullhuman/postcss-purgecss": "^2.1.0",
"autoprefixer": "^9.6.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-cli": "^6.1.3",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.2",
"style-loader": "^1.0.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@pie-dao/tailwind": "^1.1.2",
"@risingstack/react-easy-state": "^6.2.0",
"bignumber.js": "^9.0.0",
"history": "^4.10.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router-dom": "^5.1.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}