-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 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
39
40
41
42
43
44
45
{
"name": "roam",
"version": "1.0.0",
"description": "## Skills",
"main": "src/server.js",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-session": "^1.15.6",
"method-override": "^2.3.10",
"pg-promise": "^7.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^4.0.1",
"morgan": "^1.9.0"
},
"scripts": {
"db:create": "createdb roam_db",
"db:drop": "dropdb roam_db",
"db:schema": "psql roam_db < ./src/models/db/schema/schema.sql",
"db:seed": "psql roam_db < ./src/models/db/load-data.sql",
"db:reset": "npm run db:drop && npm run db:create && npm run db:schema && npm run db:seed",
"start": "node src/server",
"start:dev": "nodemon src/server",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaycribas/roam.git"
},
"author": "Jay Cribas",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaycribas/roam/issues"
},
"homepage": "https://github.com/jaycribas/roam#readme"
}