-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 KB
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": "InteractiveBloggingApplication",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"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 index.js",
"seeds": "cross-env NODE_ENV='development' node ./seeds/index.js",
"unitTest": "cross-env NODE_ENV='test' node --test --test-concurrency=1 tests/*",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@stylistic/eslint-plugin": "^5.7.1",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.1.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^17.2.0",
"nodemon": "^3.1.11",
"supertest": "^7.2.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"bcrypt"
]
}
}