-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.66 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
88
89
90
91
92
93
{
"name": "concorda-dashboard",
"version": "0.0.2",
"description": "A user management system written in node",
"author": "Dean McDonnell (http://mcdonnelldean.me/)",
"contributors": [
"Mihai Dima",
"Mircea Alexandru (http://alexandrumircea.ro/)",
"Cristian Kiss",
"Karolina Szczur (http://thefox.is)"
],
"main": "./server/start.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nearform/concorda-dashboard.git"
},
"scripts": {
"test": "lab test/*.test.js -r console -v -L -m 3000",
"lint": "lab test -dL",
"copy": "copyfiles -f ./public/assets/img/*.png ./dist/img",
"build": "npm run copy & webpack --progress --colors",
"watch": "webpack -w",
"prepublish": "npm run build",
"start": "node ./server/start.js"
},
"dependencies": {
"async": "1.5.x",
"bell": "6.1.0",
"boom": "3.x.x",
"chairo": "2.2.x",
"concorda-server": "concorda/concorda-server",
"css-loader": "0.23.x",
"d3": "3.x.x",
"dotenv": "^2.0.0",
"eraro": "^0.4.1",
"file-loader": "0.8.x",
"h2o2": "^5.1.0",
"hapi": "12.x.x",
"hapi-auth-cookie": "5.0.0",
"history": "1.17.x",
"inert": "3.x.x",
"influx": "4.0.x",
"jsonic": "0.2.2",
"lodash": "4.5.1",
"material-ui": "0.14.x",
"moment": "2.11.x",
"nes": "2.x.x",
"react": "0.14.x",
"react-addons-linked-state-mixin": "0.14.6",
"react-checkbox-group": "0.3.1",
"react-d3-components": "0.6.x",
"react-dom": "0.14.x",
"react-radio-group": "2.2.0",
"react-redux": "4.0.x",
"react-router": "1.0.x",
"react-select2-wrapper": "0.4.0",
"react-tap-event-plugin": "0.2.x",
"redux": "3.x.x",
"redux-form": "4.1.5",
"redux-logger": "2.3.x",
"redux-simple-router": "1.0.x",
"redux-thunk": "1.0.x",
"seneca-balance-client": "0.2.0",
"seneca-mesh": "0.5.0",
"style-loader": "0.13.x",
"superagent": "1.x.x",
"varo": "0.3.x"
},
"devDependencies": {
"code": "2.1.x",
"babel-core": "6.x.x",
"babel-eslint": "4.1.7",
"babel-loader": "6.2.x",
"babel-plugin-react-transform": "2.0.x",
"babel-plugin-transform-decorators-legacy": "1.x.x",
"babel-plugin-transform-object-rest-spread": "6.3.x",
"babel-preset-es2015": "6.3.x",
"babel-preset-react": "6.3.x",
"babel-preset-stage-0": "6.3.x",
"eslint-config-seneca": "1.1.x",
"eslint-plugin-hapi": "4.0.x",
"eslint-plugin-react": "3.16.x",
"eslint-plugin-standard": "1.3.x",
"lab": "8.0.x",
"copyfiles": "^0.2.1",
"postcss": "5.0.x",
"postcss-loader": "0.8.x",
"stylus-loader": "1.4.x",
"url-loader": "0.5.x",
"webpack": "1.12.x"
}
}