-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
42
43
44
{
"name": "formation_skool_api",
"version": "0.0.1",
"description": "formation skoolers",
"main": "server.js",
"scripts": {
"test": "NODE_ENV=test mocha tests/*.spec.js",
"pretest": "npm run lint",
"start": "node server.js",
"watch": "nodemon server.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/aoumiri/formation_skool_api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aoumiri/formation_skool_api/issues"
},
"homepage": "https://github.com/aoumiri/formation_skool_api#readme",
"dependencies": {
"boom": "^4.0.0",
"bunyan": "^1.8.1",
"hapi": "^15.0.3",
"hapi-swagger": "^7.2.0",
"inert": "^4.0.2",
"joi": "^9.0.4",
"vision": "^4.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}