-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
37
38
39
40
41
42
43
44
45
46
{
"name": "daytracker-api",
"version": "1.0.0",
"description": "API for Daytracker",
"main": "start.js",
"scripts": {
"start": "nodemon start.js",
"db:seed": "npx sequelize-cli db:seed:all",
"db:migrate": "npx sequelize-cli db:migrate",
"db:rollback": "npx sequelize-cli db:migrate:undo:all",
"pretest": "env NODE_ENV=test npm run db:migrate",
"test": "jest --detectOpenHandles --runInBand --forceExit --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actlikewill/daytracker-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/actlikewill/daytracker-api/issues"
},
"homepage": "https://github.com/actlikewill/daytracker-api#readme",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"config": "^3.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.25.3",
"nodemon": "^2.0.2",
"pg": "^8.0.3",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"jest": "^25.5.4",
"morgan": "^1.9.1",
"sequelize-cli": "^5.5.1",
"supertest": "^4.0.2"
}
}