-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 916 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 916 Bytes
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": "blog-list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"test": "NODE_ENV=test jest --verbose --runInBand",
"lint": "eslint . --fix",
"start:test": "NODE_ENV=test node index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.34.0",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.9.2",
"mongoose-unique-validator": "^3.1.0"
},
"jest": {
"testEnvironment": "node",
"globalTeardown": "./tests/teardown.js"
}
}