-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "windsurfshop",
"version": "0.8.2",
"description": "A simple web shop written for the University of Bristol’s COMS32500 Web Technologies unit.",
"man": "./README.md",
"homepage": "https://windsurf-shop.herokuapp.com",
"repo": "https://github.com/LukeStorry/windsurf-shop",
"license": "MIT",
"author": "Luke Storry",
"private": true,
"scripts": {
"start": "node ./server.js",
"devstart": "nodemon ./server.js",
"deploy": "git push heroku master",
"reset-database": "rm ./db/database.db ./db/sessions.db; sqlite3 ./db/database.db < ./db/reset-database.sql",
"update-products": "sqlite3 ./db/database.db < ./db/update-products.sql",
"check-database": "sqlite3 ./db/database.db '.schema' 'SELECT email from users; SELECT name from products'"
},
"dependencies": {
"bcrypt": "^3.0.0",
"connect-flash": "^0.1.1",
"connect-sqlite3": "^0.9.11",
"cookie-parser": "~1.4.3",
"csurf": "^1.9.0",
"express": "~4.16.0",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pug": "2.0.0-beta11",
"serve-favicon": "^2.5.0",
"sqlite3": "^4.0.2"
},
"devDependencies": {
"jshint": "^2.9.6",
"nodemon": "^1.18.3"
}
}