-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.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
{
"name": "survival-create",
"version": "0.2.0",
"private": true,
"dependencies": {
"d3": "3",
"debug": "^2.6.8",
"lodash.defaults": "^4.2.0",
"lodash.defaultsdeep": "^4.6.0",
"lodash.groupby": "^4.6.0",
"lodash.inrange": "^3.3.6",
"lodash.isequal": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"lodash.uniqueid": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"node-sass-chokidar": "1.3.4",
"npm-run-all": "^4.0.2",
"prop-types": "15.7.2",
"react": "16.8.1",
"react-dom": "16.8.1",
"react-scripts": "2.1.5"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build",
"build:package": "babel src/packages/@oncojs/survivalplot/index.js --out-file src/packages/@oncojs/survivalplot/index.dist.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}