-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
44
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"migrateh": "heroku run knex migrate:latest -a rent-my-tech-stuff",
"rollbackh": "heroku run knex migrate:rollback -a rent-my-tech-stuff",
"databaseh": "heroku pg:psql -a rent-my-tech-stuff",
"seedh": "heroku run knex seed:run -a rent-my-tech-stuff",
"test": "cross-env NODE_ENV=testing jest --watchAll --verbose --runInBand",
"deploy": "git push heroku main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rent-My-Tech-Stuff/node.git"
},
"engines": {
"node": "14.15.4",
"npm": "6.14.11"
},
"author": "Stephanie Enciso",
"license": "ISC",
"devDependencies": {
"eslint": "^7.23.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.4",
"knex-cleaner": "^1.3.1",
"pg": "^8.5.1"
}
}