-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "roam",
"version": "1.0.0",
"engines": {
"node": "8.4.0"
},
"description": "A travel community ",
"main": "app.js",
"scripts": {
"start": "node ./src/server.js",
"start:dev": "nodemon ./src/server.js",
"db:create": "createdb roam",
"db:drop": "dropdb roam",
"db:load": "psql roam < ./src/db/schema.sql",
"db:reset": "dropdb roam && createdb roam && npm run db:migrate",
"db:migrate": "db-migrate up --config src/config/db-migrate.json -e",
"db:migrate:create": "db-migrate create init-tables --config src/config/db-migrate.json",
"db:migrate:test": "npm run db:migrate test",
"db:seed": "psql roam < ./src/db/seed/seed.sql",
"load:session": "psql roam < node_modules/connect-pg-simple/table.sql"
},
"repository": {
"type": "git",
"url": "roam"
},
"keywords": [
"express",
"node"
],
"author": "James McCormack",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cloudinary": "^1.9.1",
"connect-pg-simple": "^4.2.1",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-session": "^1.15.6",
"method-override": "^2.3.10",
"moment": "^2.19.3",
"nodemon": "^1.12.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^7.3.1"
},
"devDependencies": {
"ajv": "^5.2.2",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0"
}
}