forked from labs13-handy-app/Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"reset": "npx knex migrate:rollback && npx knex migrate:latest && npx knex seed:run",
"reseth": "npx heroku run knex migrate:rollback -a handy-app-api && npx heroku run knex migrate:latest -a handy-app-api && npx heroku run knex seed:run -a handy-app-api",
"test": "cross-env DB_ENV=testing jest --watch"
},
"repository": "https://github.com/labs13-handy-app/Backend.git",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^15.0.3",
"axios": "^0.19.0",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.5.1",
"jwt-decode": "^2.2.0",
"knex": "^0.17.0",
"knex-cleaner": "^1.1.4",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"pg": "^7.11.0",
"sqlite3": "^4.0.8",
"stripe": "^7.1.0"
},
"devDependencies": {
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}