forked from corshidan/globalScopeBE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.71 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
{
"name": "backend",
"version": "1.0.0",
"description": "Write your backend stuff here",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -r dotenv/config app.js",
"start": "node app.js",
"manageTopics": "node -r dotenv/config ./db/scripts/topicsTable.js",
"createBootcamperTable": "node -r dotenv/config ./db/scripts/createBootcamperTable.js",
"deleteBootcamperTable": "node -r dotenv/config ./db/scripts/deleteBootcamperTable.js",
"createReflectionsTable": "node -r dotenv/config ./db/scripts/createReflectionsTable.js",
"deleteReflectionsTable": "node -r dotenv/config ./db/scripts/deleteReflectionsTable.js",
"populateBootcamperTable": "node -r dotenv/config ./db/scripts/populateBootcamperTable.js",
"populateReflectionsTable": "node -r dotenv/config ./db/scripts/populateReflectionsTable.js",
"reset": "node -r dotenv/config ./db/scripts/deleteReflectionsTable.js && node -r dotenv/config ./db/scripts/deleteBootcamperTable.js && node -r dotenv/config ./db/scripts/createBootcamperTable.js && node -r dotenv/config ./db/scripts/createReflectionsTable.js && node -r dotenv/config ./db/scripts/populateBootcamperTable.js && node -r dotenv/config ./db/scripts/populateReflectionsTable.js",
"testing": "node -r dotenv/config ./db/scripts/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corshidan/globalScopeBE.git"
},
"author": "us",
"license": "ISC",
"bugs": {
"url": "https://github.com/corshidan/globalScopeBE/issues"
},
"homepage": "https://github.com/corshidan/globalScopeBE#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.14",
"pg": "^8.7.1"
}
}