-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.15 KB
/
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
{
"name": "bloglist",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"build": "cd frontend && npm run build",
"render:deploy": "npm install && cd frontend && npm install && npm run build",
"eslint": "eslint .",
"test": "NODE_ENV=testing jest --verbose --runInBand --forceExit",
"start:test": "NODE_ENV=testing node index.js",
"start:e2e": "npm run start:test & cd frontend && npm run start",
"test:e2e": "cd frontend && npm run cypress"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.3"
},
"devDependencies": {
"eslint": "^8.32.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-react": "^7.34.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
}
}