forked from fossasia/visdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "visdom",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "CC-BY-NC-4.0",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-ignore-generated-and-nolint": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "1.17.0",
"react-select": "^2.0.0-alpha.3",
"webpack": "^1.14.0"
},
"scripts": {
"dev": "webpack --watch --progress --colors",
"build": "webpack -p",
"buckbuild": "$_ ./node_modules/webpack/bin/webpack.js -p",
"lint": "eslint js/."
},
"dependencies": {
"create-react-class": "^15.6.3",
"css-loader": "^0.28.9",
"d3-dispatch": "^1.0.5",
"d3-drag": "^1.2.3",
"d3-polygon": "^1.0.5",
"d3-selection": "^1.4.0",
"d3-zoom": "^1.7.3",
"debounce": "^1.2.0",
"fast-json-patch": "^2.0.7",
"fetch": "^1.1.0",
"jquery": "^3.3.1",
"json-loader": "^0.5.7",
"json-stable-stringify": "^1.0.1",
"md5": "^2.2.1",
"rc-tree-select": "^1.12.9",
"react": "16.2.0",
"react-devtools": "^3.1.0",
"react-dom": "16.2.1",
"react-grid-layout": "0.16.6",
"react-modal": "^3.1.13",
"style-loader": "^0.20.1",
"three": "^0.105.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}