-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.94 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
86
87
88
89
90
91
92
93
{
"name": "akt-entry-project",
"version": "0.0.1",
"description": "AKeToan Entry Project",
"scripts": {
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage",
"start": "nodemon --exec babel-node src/backend/index.js",
"build": "rm -rf build && NODE_ENV=production webpack --progress",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" src"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@reduxjs/toolkit": "^1.7.0",
"antd": "^4.17.2",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"express": "^4.17.0",
"express-validator": "^5.3.1",
"mongodb-memory-server": "^5.2.11",
"mongoose": "^5.13.13",
"morgan": "^1.10.0",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-app-polyfill": "^1.0.1",
"react-dom": "^16.11.0",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-remove-webpack": "^1.1.0",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"jest": "^27.4.3",
"nodemon": "^1.19.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"raw-loader": "^2.0.0",
"react-hot-loader": "^4.8.7",
"react-scripts": "^3.0.1",
"react-test-renderer": "^16.9.0",
"redux-mock-store": "^1.5.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"supertest": "^6.1.6",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"webpack": "^4.31.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^1.7.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 9",
"not op_mini all"
]
}