-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "Probe",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --testPathPattern=\"build/.*\"",
"watch-scss": "node-sass -w src/components/index.scss css/index.css",
"build-scss": "node-sass src/components/index.scss css/index.css",
"watch-js": "babel src -d build -w --source-maps",
"build-js": "babel src -d build",
"build-all": "yarn build-js && yarn build-scss",
"release": "electron-packager . --out=./release --package-manager=yarn --overwrite",
"electron": "electron ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@blueprintjs/core": "^1.14.0",
"@vx/axis": "^0.0.119",
"@vx/curve": "^0.0.112",
"@vx/gradient": "^0.0.112",
"@vx/marker": "^0.0.120",
"@vx/shape": "^0.0.119",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"classnames": "^2.2.5",
"d3": "^4.8.0",
"d3-tip": "^0.7.1",
"electron-devtools-installer": "^2.2.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"node-sass": "^4.5.3",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-motion": "^0.5.0"
},
"devDependencies": {
"electron": "^1.6.2",
"electron-packager": "^8.7.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.44.0",
"jest": "^20.0.4",
"prettier": "^1.4.4"
}
}