-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "@datopian/dashboard",
"main": "/dist/index.js",
"module": "/dist/index.js",
"version": "0.1.5",
"private": false,
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"react-scripts": "2.1.5",
"rewire": "^4.0.1",
"source-map-explorer": "^1.6.0"
},
"dependencies": {
"data.js": "^0.12.9",
"datapackage-render": "git+https://github.com/frictionlessdata/datapackage-render-js.git",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-spinkit": "^3.0.0",
"react-vega": "^4.0.2",
"vega-lib": "^4.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "node ./scripts/build-non-split.js && mv build/static/js/*.js build/static/js/main.js",
"build-optimized": "react-scripts build",
"build:package": "rm -rf dist/ && mkdir dist && NODE_ENV=production npx babel src/ -d dist/ --copy-files",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer build/static/js/main.*"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}