-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "aslant",
"description": "A powerful charting and visualization for influxdb",
"version": "1.0.0",
"author": "Tree Xie <vicansocanbico@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/vicanso/aslant"
},
"bugs": {
"url": "https://github.com/vicanso/aslant/issues",
"email": "vicansocanbico@gmail.com"
},
"main": "./app",
"keywords": [
"koa",
"framework",
"aslant"
],
"engines": {
"node": ">=6.0.0"
},
"readmeFilename": "README.md",
"scripts": {
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"eslint-es6": "node ./node_modules/.bin/eslint public/js/*.js public/js/*/*.js public/js/*/*/*.js",
"eslint-node": "node ./node_modules/.bin/eslint *.js helpers/*.js middlewares/*.js router/*.js controllers/*.js models/*.js services/*.js",
"eslint": "npm run eslint-node && npm run eslint-es6",
"build": "NODE_ENV=production node ./node_modules/.bin/gulp",
"watch": "node node_modules/.bin/webpack --progress --colors --watch",
"start": "node app",
"dev": "nodemon app"
},
"license": "MIT",
"dependencies": {
"@blueprintjs/core": "^1.4.0",
"@blueprintjs/datetime": "^1.4.0",
"@blueprintjs/table": "^1.2.0",
"bluebird": "^3.5.0",
"classnames": "^2.2.5",
"dcharts": "^1.0.0",
"debug": "^2.6.1",
"etcd-register": "1.0.0",
"http-errors": "^1.5.0",
"influx-ql": "^2.5.0",
"influxdb-nodejs": "^2.6.0",
"joi": "^10.2.2",
"jtfileimporter": "^1.0.0",
"koa": "^2.0.1",
"koa-bodyparser": "^3.2.0",
"koa-connection-limit": "^2.0.5",
"koa-etag": "^3.0.0",
"koa-http-stats": "^2.2.0",
"koa-log": "^2.1.0",
"koa-methodoverride": "^2.0.0",
"koa-mounting": "^2.0.4",
"koa-query-checker": "^2.0.3",
"koa-rest-version": "^1.0.0",
"koa-router-parser": "^3.0.1",
"koa-simple-redis": "^1.0.2",
"koa-simple-session": "^1.0.2",
"koa-static-serve": "^2.1.3",
"koa-stylus-parser": "^2.0.2",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"mongoose": "^4.8.6",
"performance-nodejs": "^1.0.5",
"pug": "^2.0.0-beta11",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.4.2",
"react-enroute": "^1.0.0",
"react-redux": "^5.0.2",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"require-tree": "^1.1.1",
"simple-stringify": "^1.0.0",
"superagent": "^3.4.2",
"supertiming": "^1.0.2",
"timtam-logger": "^1.1.0",
"ulid": "^0.1.0",
"url-join": "^1.1.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"crc": "^3.4.4",
"del": "^2.2.2",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"gulp": "^3.9.1",
"gulp-base64": "^0.1.3",
"gulp-copy": "1.0.0",
"gulp-cssmin": "^0.1.7",
"gulp-stylus": "^2.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"nib": "^1.1.2",
"supertest": "^2.0.1",
"through2": "^2.0.1",
"webpack": "^1.14.0"
}
}