-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
43
{
"name": "unearth-server",
"version": "1.0.0",
"description": "Backend server serving the REST API",
"main": "index.js",
"author": "Cedric Amaya <amaya.cedric@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "0.21.15",
"lodash.differencewith": "^4.5.0",
"pg": "8.5.1",
"pg-connection-string": "^2.4.0",
"snoowrap": "^1.21.0"
},
"devDependencies": {
"jest": "^25.2.4",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"scripts": {
"test": "NODE_ENV=development jest --runInBand",
"test:watch": "yarn test --watch-all",
"start": "NODE_ENV=production node src/index.js",
"dev": "nodemon src/index.js",
"db": "node_modules/.bin/knex",
"db:rollback": "yarn db migrate:rollback --all",
"db:migrate": "yarn db migrate:latest",
"db:seed": "yarn db seed:run",
"db:reset": "yarn db:rollback && yarn db:migrate && yarn db:seed"
},
"engines": {
"node": "12.16.x",
"yarn": "1.x"
},
"jest": {
"testEnvironment": "node"
}
}