-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
44
45
{
"name": "vlive-backend",
"version": "0.5.0",
"description": "A vlive backend",
"author": "Team brosis <[email protected]>",
"contributors": [
"Hayun Yang <[email protected]>",
"Hyojung Cho <[email protected]>",
"Eunbin Kim <[email protected]>"
],
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"prepare": "husky install",
"test": "mocha spec"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"express-joi-validation": "^5.0.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.1.1",
"mongoose": "^6.0.4",
"morgan": "~1.9.1"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"supertest": "^6.1.6"
}
}