-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 2.42 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
{
"name": "promviz-front",
"version": "0.1.0",
"description": "promviz front",
"author": "Yusuke Otsuka <[email protected]>",
"scripts": {
"clean": "rimraf dist && mkdirp dist",
"lint": "eslint src --ext .js --ext .jsx --fix",
"copy:fonts": "cpx \"./node_modules/source-sans-pro/**/*\" ./dist/fonts",
"copy:json": "cpx \"./src/*.json\" ./dist",
"dev-server": "webpack-dev-server --host=0.0.0.0 --content-base dist/ --history-api-fallback",
"dev": "npm-run-all clean --parallel copy:* dev-server",
"validate": "npm ls",
"dist": "npm run clean && npm run copy:fonts && npm run copy:json && webpack",
"start": "npm run dist && node server.js"
},
"engines": {
"node": "~4.4.0"
},
"license": "Apache-2.0",
"dependencies": {
"bootstrap": "^3.3.7",
"express": "^4.16.2",
"flux": "^3.1.0",
"hammerjs": "^2.0.8",
"jquery": "^3.1.1",
"keymirror": "^0.1.1",
"keypress.js": "2.1.0-1",
"lodash": "^4.16.4",
"numeral": "^1.5.3",
"query-string": "^4.2.3",
"react": "^15.3.2",
"react-addons-shallow-compare": "^15.3.2",
"react-bootstrap": "^0.30.6",
"react-checkbox-group": "^3.3.1",
"react-dom": "^15.6.1",
"react-highcharts": "^12.0.0",
"react-virtualized": "^8.2.0",
"socket.io-client": "^1.5.1",
"source-sans-pro": "^2.0.10",
"superagent": "^3.0.0",
"tween.js": "^16.3.5",
"vizceral-react": "~4.3.0",
"webfontloader": "^1.6.26"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cpx": "^1.5.0",
"css-loader": "^0.26.0",
"dotenv-webpack": "^1.5.4",
"eslint": "^3.9.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-loader": "^1.6.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-react": "^6.4.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^3.1.1",
"precommit-hook": "^3.0.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"repository": {
"type": "git",
"url": "[email protected]:mjhd-devlion/promviz-front.git"
},
"pre-commit": [
"lint",
"test"
]
}