-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node_modules/.bin/webpack --config webpack.config.js --mode=production",
"dev": "node_modules/.bin/webpack --config webpack.config.js --mode=development -w "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"mongodb-client-encryption": "^2.8.0",
"mongoose": "^7.2.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"winston": "^3.9.0"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"babel-loader": "8.2.3",
"nodemon": "^2.0.22",
"nodemon-webpack-plugin": "^4.8.1",
"rimraf": "3.0.2",
"webpack": "5.64.3",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.5.0"
}
}