-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 941 Bytes
/
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
{
"name": "life-in-dot.-backend",
"version": "0.0.0",
"private": true,
"engines": {
"node": "16.15.1"
},
"scripts": {
"start": "node ./src/bin/www",
"dev": "nodemon ./src/bin/www"
},
"dependencies": {
"@types/morgan": "^1.9.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"joi": "^17.6.0",
"joi-objectid": "^4.0.2",
"joigoose": "^8.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.2",
"morgan": "~1.9.1",
"winston": "^3.8.1"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.18"
}
}