-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "nthuee",
"version": "1.0.0",
"description": "backend for NTHUEECAMP",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node --es-module-specifier-resolution=node app.js",
"dev": "npm run docker-compose-dev:up && cross-env NODE_ENV=dev nodemon --es-module-specifier-resolution=node app.js",
"docker-compose-dev:up": "docker-compose -f docker-compose.dev.yml up -d",
"docker-compose-dev:down": "docker-compose -f docker-compose.dev.yml down",
"lint": "npx eslint --fix '**/*.js"
},
"type": "module",
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"fastest-validator": "^1.12.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.2",
"taiwan-id-validator": "^1.4.1",
"uuid": "^8.3.2",
"winston": "^3.6.0"
}
}