-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 909 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
{
"name": "journal",
"version": "1.0.0",
"description": "Part4",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"lint": "eslint .",
"test": "NODE_ENV=test jest --verbose --runInBand --forceExit"
},
"repository": {
"type": "git",
"url": "git@github.com-aiotrope:aiotrope/journal.git"
},
"author": "Arnel Imperial",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.0.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.25.0",
"jest": "^29.2.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.0"
}
}