-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·83 lines (83 loc) · 2.66 KB
/
package.json
File metadata and controls
executable file
·83 lines (83 loc) · 2.66 KB
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
{
"name": "volt-junior-react-dev-boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"server": "node server.js",
"start": "webpack serve --config webpack.config.ts & npm run server",
"build": "webpack --config webpack.production.config.ts",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.0.2",
"bootstrap-icons": "^1.5.0",
"express": "^4.17.1",
"install": "^0.13.0",
"lodash": "^4.17.21",
"npm": "^7.20.0",
"react": "^17.0.2",
"react-bootstrap": "^2.0.0-beta.4",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-select": "^4.3.1",
"sequelize": "^6.6.5",
"sqlite3": "^4.2.0"
},
"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/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@reduxjs/toolkit": "^1.6.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/css-minimizer-webpack-plugin": "^3.0.2",
"@types/enzyme": "^3.10.9",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/jest": "^27.0.1",
"@types/mini-css-extract-plugin": "^2.0.1",
"@types/node": "^16.4.13",
"@types/react": "^17.0.14",
"@types/react-bootstrap": "^0.32.26",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.1.8",
"@types/react-select": "^4.0.17",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.1.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.31.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.4",
"fork-ts-checker-webpack-plugin": "^6.2.12",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.1.0",
"node-sass": "^6.0.1",
"purgecss-webpack-plugin": "^4.0.3",
"react-select-event": "^5.3.0",
"react-transform-hmr": "^1.0.4",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}