This repository has been archived by the owner on Nov 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.28 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "Bacalao",
"author": "Daniel Norman",
"private": true,
"version": "0.2.0",
"description": "",
"main": "js/app.js",
"dependencies": {
"asorted": "0.0.3",
"babel": "^5.8.35",
"babel-register": "^6.5.2",
"bell": "^2.9.0",
"boom": "^2.10.1",
"bunyan": "^1.1.3",
"cookie": "^0.2.3",
"good": "^6.6.0",
"good-console": "^5.3.1",
"hapi": "^13.0.0",
"hapi-auth-cookie": "^6.1.1",
"inert": "^3.2.0",
"joi": "^8.0.1",
"keymaster": "~1.6.2",
"keymirror": "^0.1.1",
"lout": "^8.0.0",
"moment": "^2.8.3",
"mongoose": "^4.4.3",
"q": "~1.4.1",
"react": "^0.14.7",
"react-bootstrap": "^0.28.3",
"react-dom": "^0.14.7",
"react-router": "^2.0.0",
"react-router-bootstrap": "^0.20.1",
"react-widgets": "^3.1.7",
"socket.io": "^1.1.0",
"socket.io-client": "^1.1.0",
"statehood": "^4.0.0",
"superagent": "^1.7.2",
"underscore": "^1.8.3",
"vision": "^4.0.1"
},
"devDependencies": {
"css-loader": "^0.23.1",
"envify": "~2.0.1",
"eslint": "^2.5.1",
"eslint-plugin-react": "^4.2.3",
"json-loader": "~0.5.1",
"lab": "^8.2.0",
"node-sass": "^3.4.2",
"nodemon": "^1.8.1",
"sass-loader": "^3.1.2",
"standard": "^6.0.8",
"statics": "~0.1.0",
"style-loader": "~0.8.1",
"uglify-js": "~2.4.15",
"watchify": "^1.0.6",
"webpack": "^1.12.13"
},
"eslintConfig": {
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true
}
}
},
"scripts": {
"dev": "nodemon -I -w server/ server/server.js --development ",
"devmap": "nodemon -I -w server/ server/server.js --development | bunyan & node node_modules/webpack/bin/webpack.js -d -w --colors --progress",
"watch": "node node_modules/webpack/bin/webpack.js -p --colors --display-modules -w -d --colors --progress",
"build": "node node_modules/webpack/bin/webpack.js -p --colors --display-modules --progress",
"start": "node server/server.js --production",
"test": "standard && lab -c server/test"
}
}