-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
42
43
44
45
46
47
48
{
"name": "Reavis",
"version": "1.0.0",
"description": "An app which shows people involved in FACN1, where a user can see everyone involved, and add new people",
"main": "index.js",
"scripts": {
"start": "node src/start_server.js",
"dev": "nodemon src/start_server.js",
"test": "node src/tests/test.js",
"coverage": "istanbul cover ./src/tests/test.js",
"prepush": "npm run lint",
"lint": "./node_modules/.bin/eslint './+(src|database)/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/Reavis.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/Reavis/issues"
},
"homepage": "https://github.com/FACN1/Reavis#readme",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.3",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0"
},
"dependencies": {
"env2": "^2.1.1",
"handlebars": "^4.0.6",
"hapi": "^16.1.1",
"hapi-auth-jwt2": "^7.2.4",
"inert": "^4.2.0",
"joi": "^10.4.1",
"jsonwebtoken": "^7.3.0",
"pg": "^6.1.5",
"request": "^2.81.0",
"tape": "^4.6.3",
"vision": "^4.1.1"
},
"engines": {
"node": "7.4.0"
}
}