-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (44 loc) · 1.08 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": "celebdoa-backend",
"version": "1.0.0",
"description": "Build Week Unit 4",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/celebrity-dead-or-alive-1/BE.git"
},
"author": "Darrin Lowery",
"license": "ISC",
"bugs": {
"url": "https://github.com/celebrity-dead-or-alive-1/BE/issues"
},
"homepage": "https://github.com/celebrity-dead-or-alive-1/BE#readme",
"scripts": {
"server": "nodemon index.js",
"start": "node index.js",
"COMMENT: should be 'test'": "cross-env DB_ENV=testing jest --watch",
"test": "jest --watch",
"db:update": "knex migrate:latest",
"db:undo": "knex migrate:rollback"
},
"devDependencies": {
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-session-knex": "^1.5.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.4",
"knex-cleaner": "^1.3.0",
"pg": "^7.15.0",
"sqlite3": "^4.1.1"
}
}