-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
{
"name": "user-fe",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/fc5y/user-fe.git",
"author": "Nhan <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "ENV=dev webpack serve --config webpack/webpack.config.js --watch --progress --profile",
"dev-window": "SET \"ENV=dev\" && webpack serve --config webpack/webpack.config.js --watch --progress --profile",
"build:test": "ENV=test webpack --config webpack/webpack.config.js",
"build:prod": "ENV=prod webpack --config webpack/webpack.config.js",
"lint": "./node_modules/.bin/eslint \"./src/**/*.js\"",
"lint-fix": "./node_modules/.bin/eslint \"./src/**/*.js\" --fix",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx)": [
"npm run lint"
]
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^6.1.1",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"raw-loader": "^4.0.1",
"react-test-renderer": "^16.13.1",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.2.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"jest": "^26.4.2",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-markdown": "^4.3.1",
"react-route-config": "^2.0.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
}
}