-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "Reached",
"version": "1.0.0",
"description": "",
"scripts": {
"start:dev": "NODE_ENV=development nodemon src/server.js",
"start": "node src/server.js",
"db:create": "createdb reached_development",
"db:load_schema": "psql reached_development < src/models/db/schema.sql",
"db:session:setup": "psql reached_development < node_modules/connect-pg-simple/table.sql",
"db:reset": "dropdb reached_development && createdb reached_development && npm run db:load_schema && npm run db:session:setup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moniarchy/reached.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/moniarchy/reached/issues"
},
"homepage": "https://github.com/moniarchy/reached#readme",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.1",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^4.2.1",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"immutable": "^3.8.1",
"method-override": "^2.3.9",
"morgan": "^1.8.2",
"path": "^0.12.7",
"pg-promise": "^6.7.1",
"pug": "^2.0.0-rc.4",
"relative-date": "^1.1.3",
"twilio": "^3.11.1",
"uploadcare-widget": "^3.1.4"
},
"devDependencies": {
"nodemon": "^1.14.11"
}
}