-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 793 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
{
"name": "fullstackopen-bloglist",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_env=test node --test"
},
"author": "Changyi Yao",
"license": "MIT",
"description": "",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.3"
}
}