-
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) · 920 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 920 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": "sql-backend",
"version": "1.0.0",
"description": "",
"author": "CrzMarvin",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.5",
"morgan": "^1.10.0",
"objection": "^2.2.3",
"papaparse": "^5.3.0",
"pg": "^8.3.3",
"yup": "^0.29.3"
},
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest",
"nodemon": "nodemon src/index.js",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run"
},
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}