-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
40
41
42
{
"name": "book-read-backend",
"version": "1.0.0",
"repository": "https://github.com/Persatyi/Book-Read-backend.git",
"author": "GoIT team",
"license": "MIT",
"scripts": {
"test": "jest --runInBand",
"start": "cross-env NODE_ENV=production node ./server.js",
"start:dev": "cross-env NODE_ENV=development nodemon ./server.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"google-auth-library": "^8.1.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.4",
"morgan": "^1.10.0",
"supertest": "^6.2.4",
"swagger-ui-express": "^4.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"supertest": "^6.2.4"
}
}