-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.52 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
{
"name": "nyan-cat-react",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run server",
"server": "webpack-dev-server --config build/webpack.config.js --env.env=dev",
"build": "webpack --config build/webpack.config.js --env.env=prod"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.14.6",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^4.3.0",
"dotenv": "^8.6.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.10.1",
"node-sass": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"postcss-flexbugs-fixes": "^4.2.1",
"react-dev-utils": "^11.0.4",
"react-hot-loader": "^4.13.0",
"sass": "^1.35.2",
"sass-loader": "^9.0.3",
"style-loader": "^1.3.0",
"stylelint": "^13.13.1",
"stylelint-config-property-sort-order-smacss": "^6.4.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-scss": "^3.19.0",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"classnames": "^2.3.1",
"domready": "^1.0.8",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"uuid-random": "^1.3.2"
}
}