-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"name": "phat_fitness",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"database_DEV_reset": "psql phat_fitness < ./server/db/schema_init.sql && psql phat_fitness < ./server/db/schema.sql",
"test": "echo \"Error: no test specified\" && exit 1",
"database_full_reset": "psql phat_fitness < ./server/db/schema_init.sql && psql phat_fitness < ./server/db/schema_production.sql && psql phat_fitness < ./server/db/schema.sql && psql phat_fitness < ./server/db/seed_production.sql",
"START_SERVER_START_APPLICATION": "service postgresql start && npx nodemon server/server.js",
"npx monitor": "npx nodemon server/server.js",
"stop postgresql": "service postgresql stop",
"start postgresql": "service postgresql start",
"git add,commit,push":"git add . && git commit -m 'npm git push' && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cjunk/PHAT_FITNESS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cjunk/PHAT_FITNESS/issues"
},
"homepage": "https://github.com/Cjunk/PHAT_FITNESS#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-pg-simple": "^7.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"pg": "^8.7.3",
"postgres": "^3.2.4"
},
"devDependencies": {
"nodemon": "^2.0.16",
"ts-node": "^10.8.1"
}
}