-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "roamwithfriends",
"version": "1.0.0",
"description": "## Skills",
"main": "./src/server.js",
"scripts": {
"start": "node src/server.js",
"start:dev": "nodemon"
"test": "echo \"Error: no test specified\" && exit 1",
"db:init": "psql < ./src/database/schema.sql && psql roamwfriends < node_modules/connect-pg-simple/table.sql",
"db:reset": "dropdb roamwfriends && createdb roamwfriends && npm run db:init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mKleinCreative/RoamWFriends.git"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.1",
"connect-pg-simple": "^4.2.1",
"ejs": "^2.5.7",
"eslint": "^4.7.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"font-awesome": "^4.7.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^6.7.1"
},
"devDependencies": {
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"nodemon": "^1.12.1"
}
}