-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.9.2",
"pg-promise": "^11.5.3"
},
"name": "smartcart",
"description": "API for smartcart capstone project",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"db:init": "psql -U postgres -f db/schema.sql",
"db:seed": "psql -U postgres -f db/seed.sql",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"isd": "npm run db:init && npm run db:seed && npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capstone-team-5/SmartCart-backend.git"
},
"keywords": [
"creative",
"coding",
"express",
"postgres",
"smartcart",
"shopper",
"products",
"reviews",
"stores"
],
"author": "Diandre Miller, Ryan Fodera, Tafari Excell, Touhami Ben, Vandhana Mohan",
"license": "ISC",
"bugs": {
"url": "https://github.com/capstone-team-5/SmartCart-backend/issues"
},
"homepage": "https://github.com/capstone-team-5/SmartCart-backend/blob/main/README.md",
"devDependencies": {
"nodemon": "^3.0.1"
}
}