-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "artograph",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.8.0",
"request": "^2.88.0",
"sequelize": "^4.42.0"
},
"devDependencies": {},
"scripts": {
"start": "node server/server.js",
"start:dev": "nodemon server/server.js",
"db:regen": "node server/db/createDb.js",
"css:build": "node-sass client/sass/style.sass client/css/style.css",
"css:watch": "nodemon -e sass -x \"npm run css:build\"",
"db:save": "pg_dump --format=c artograph > server/db/export.sql",
"db:reset": "npm run db:wipe && pg_restore -d artograph server/db/export.sql",
"db:wipe": "psql -c 'drop database if exists artograph;' && psql -c 'create database artograph;'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenziebottoms/artograph.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kenziebottoms/artograph/issues"
},
"homepage": "https://github.com/kenziebottoms/artograph#readme"
}