-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "the-badgerer",
"version": "1.0.0",
"description": "a sql based review site",
"main": "src/start.js",
"scripts": {
"dev": "nodemon src/start.js",
"start": "node src/start.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build database": "node src/database_builder/build_database.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC9/the-badgerer.git"
},
"author": "Nick Nori Emily John",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC9/the-badgerer/issues"
},
"homepage": "https://github.com/FAC9/the-badgerer#readme",
"dependencies": {
"bcrypt": "^0.8.7",
"env2": "^2.1.1",
"handlebars": "^4.0.6",
"hapi": "^15.2.0",
"hapi-auth-cookie": "^6.1.1",
"inert": "^4.0.3",
"joi": "^10.0.1",
"pg": "^6.1.0",
"vision": "^4.1.1"
},
"devDependencies": {
"eslint": "^3.11.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1"
}
}