-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "api-showroom",
"version": "1.0.0",
"author": "albertvp <[email protected]>",
"license": "MIT",
"description": "Find the API Showroom docs",
"main": "app/server.js",
"repository": {
"type": "git",
"url": "https://github.com/albertvp/api-showroom.git"
},
"bugs": "https://github.com/albertvp/api-showroom/issues",
"scripts": {
"lint": "eslint .",
"start": "node app/server",
"debug": "node debug app/server",
"dev": "npm run lint; npm run build; npm start",
"build": "webpack -p --progress --config app/webpack.js",
"test": "lab -v -P '_test' -T node_modules/lab-babel -t 97 module app components",
"test-cov-html": "npm test -- -r html -o coverage.html -r console -o stdout",
"watch": "nodemon -w app/ -w components/ -e js app/server -e js",
"watch-test-cov": "npm run watch -- -x npm run test-cov-html",
"watch-test": "npm run watch -- -x npm test"
},
"devDependencies": {
"babel-core": "^5.8.33",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.3",
"code": "^2.0.1",
"css-loader": "^0.21.0",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"lab": "^7.0.0",
"lab-babel": "^1.1.0",
"node-sass": "^3.4.1",
"react-addons-test-utils": "^0.14.3",
"sass-loader": "^3.1.1",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.2"
},
"dependencies": {
"babel": "^5.8.29",
"boom": "^2.10.0",
"flux": "^2.1.1",
"good": "^6.4.0",
"joi": "^6.9.1",
"inert": "^3.2.0",
"vision": "^4.0.1",
"hapi": "^11.0.2",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"hapi-react-views": "^4.0.0",
"hapi-swagger": "^2.2.1",
"good-console": "^5.1.0",
"superagent": "git+https://[email protected]/visionmedia/superagent.git"
}
}