-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.11 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
{
"name": "react_test_task",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/concurrently \"npm run start:api\" \"npm start\"",
"start:api": "node tools/apiServer.js",
"start": "webpack serve -c config/webpack/dev.js",
"build": "webpack -c config/webpack/prod.js",
"pwa": "webpack -c config/webpack/pwa.js",
"analyze": "webpack --analyze -c config/webpack/analyze.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"add-asset-html-webpack-plugin": "^3.2.0",
"babel-loader": "^8.2.2",
"clone": "^2.1.2",
"concurrently": "^6.0.2",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"dotenv-webpack": "^7.0.2",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"http-server": "^0.12.3",
"imagemin-webpack-plugin": "^2.4.2",
"json-server": "^0.16.3",
"markdown-loader": "^6.0.0",
"mini-css-extract-plugin": "^1.5.0",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.35.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@reduxjs/toolkit": "^1.5.1",
"antd": "^4.15.2",
"axios": "^0.21.1",
"immer": "^8.0.4",
"nanoid": "^3.1.22",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-markdown": "^6.0.1",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.3",
"shortid": "^2.2.16",
"styled-components": "^5.2.3"
},
"eslintConfig": {
"extends": "react-app"
},
"apiurl": "http://localhost:3001"
}