-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "nodejs-expressjs-mongodb-base-project",
"private": true,
"version": "1.0.0",
"author": "Khang Nguyen",
"description": "A Software Developer :)",
"engines": {
"node": "18.17.1"
},
"scripts": {
"lint": "eslint src --ext js --report-unused-disable-directives --max-warnings 0",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel ./src -d ./build/src",
"build": "npm run clean && npm run build-babel",
"production": "npm run build && cross-env BUILD_MODE=production node ./build/src/server.js",
"dev": "cross-env BUILD_MODE=dev nodemon --exec babel-node ./src/server.js"
},
"dependencies": {
"@babel/runtime": "^7.23.9",
"async-exit-hook": "2.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"http-status-codes": "^2.3.0",
"joi": "^17.12.2",
"lodash": "^4.17.21",
"material-ui-confirm": "^3.0.16",
"mongodb": "^6.5.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/node": "^7.22.10",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@types/async-exit-hook": "^2.0.2",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.56.0",
"nodemon": "^3.0.3"
}
}