forked from Netflix/vizceral-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.2 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
{
"name": "vizceral-example",
"version": "4.3.0",
"description": "Vizceral example app",
"author": "Justin Reynolds <jreynolds@netflix.com>",
"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 --color",
"dev": "npm-run-all clean --parallel copy:* dev-server",
"validate": "npm ls"
},
"engines": {
"node": "~4.4.0"
},
"license": "Apache-2.0",
"dependencies": {
"@tweenjs/tween.js": "^16.8.0",
"bootstrap": "^3.3.7",
"flux": "^3.1.0",
"hammerjs": "^2.0.8",
"jquery": "^3.1.1",
"keymirror": "^0.1.1",
"keypress.js": "2.1.0-1",
"lodash": "^4.17.11",
"numeral": "^1.5.3",
"prop-types": "^15.7.2",
"query-string": "^4.2.3",
"react": "^16.8.6",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.8.6",
"react-virtualized": "^9.21.0",
"socket.io-client": "^1.5.1",
"source-sans-pro": "^2.0.10",
"superagent": "^3.0.0",
"vizceral-react": "^4.8.0",
"webfontloader": "^1.6.26"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cpx": "^1.5.0",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"precommit-hook": "^3.0.0",
"rimraf": "^2.5.4",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"repository": {
"type": "git",
"url": "git@github.com:Netflix/vizceral-example.git"
},
"pre-commit": [
"lint",
"test"
]
}