-
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) · 980 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 980 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
38
39
{
"name": "newProject",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node",
"pretest": "node_modules/.bin/knex migrate:latest --env test",
"test": "jest --watchAll --verbose=false",
"secure-mode": "jest --watchAll --verbose=false",
"posttest": "node_modules/.bin/knex migrate:rollback --all --env test",
"lint": "eslint ./src/** test/** --fix",
"dev": "nodemon index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.1",
"mariadb": "^2.4.1",
"pg": "^8.2.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"faker": "4.1.0",
"jest": "^26.1.0",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}