-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@types/cors": "^2.8.17",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.17",
"babel-loader": "^9.1.3",
"css-loader": "^6.11.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.7",
"node-sass": "^9.0.0",
"npm-watch": "^0.13.0",
"postcss": "^8.4.33",
"postcss-loader": "^8.0.0",
"prettier": "^3.2.4",
"sass": "^1.77.4",
"sass-loader": "^14.2.1",
"style-loader": "^3.3.4",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"version": "1.0.0",
"description": "My webpack project",
"name": "my-webpack-project",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"start": "nodemon server/index.js",
"syncSql": "node server/db/index.js",
"redis": "redis-server",
"redisCli": "redis-cli"
},
"dependencies": {
"axios": "^1.6.7",
"babel": "^6.23.0",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"mongoose": "^8.1.1",
"mysql": "^2.18.1",
"mysql2": "^3.9.0",
"nodemon": "^3.0.3",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-router-dom": "^6.21.3",
"redis": "^4.6.13",
"sequelize": "^6.35.2",
"sequelize-cli": "^6.6.2"
},
"main": "index.js",
"author": "",
"license": "ISC"
}