-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.42 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
47
48
49
{
"name": "code-your-dreams-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./src/app.js",
"watch:dev": "nodemon ./src/app.js",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"migrateh": "heroku run knex migrate:latest -a YOUR_HEROKU_APP_NAME",
"rollbackh": "heroku run knex migrate:rollback -a YOUR_HEROKU_APP_NAME",
"databaseh": "heroku pg:psql -a YOUR_HEROKU_APP_NAME",
"seedh": "heroku run knex seed:run -a YOUR_HEROKU_APP_NAME",
"deploy": "git push heroku main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BloomTech-Labs/code-your-dreams-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BloomTech-Labs/code-your-dreams-be/issues"
},
"homepage": "https://github.com/BloomTech-Labs/code-your-dreams-be#readme",
"dependencies": {
"auth0": "^3.6.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"eslint": "^8.42.0",
"express": "^4.18.2",
"express-oauth2-jwt-bearer": "^1.5.0",
"helmet": "^7.0.0",
"jest": "^29.5.0",
"knex": "^2.4.2",
"knex-cleaner": "^1.3.1",
"morgan": "^1.10.0",
"pg": "^8.11.0",
"prettier": "^2.8.8"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}