-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
{
"name": "@datopian/data-explorer",
"version": "0.4.15",
"private": false,
"main": "/dist/AppWithProvider.js",
"module": "/dist/AppWithProvider.js",
"dependencies": {
"@datopian/chart-builder": "^0.1.6",
"@datopian/datapackage-views-js": "^1.4.4",
"@datopian/datastore-query-builder": "^0.4.15",
"@datopian/map-builder": "^0.1.9",
"data.js": "^0.12.11",
"datapackage-render": "git+https://github.com/frictionlessdata/datapackage-render-js.git",
"i18next": "^19.0.3",
"i18next-browser-languagedetector": "^4.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-i18next": "^11.2.7",
"react-loader": "^2.4.5",
"react-paginate": "^6.3.2",
"react-redux": "^7.1.0",
"react-scripts": "3.0.1",
"react-tabs-redux": "^4.0.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"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",
"autoprefixer": "^9.6.1",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"react-cosmos": "^4.8.1",
"redux-devtools-extension": "^2.13.8",
"tailwindcss": "^1.1.1"
},
"scripts": {
"css": "postcss src/css/index.css -o src/App.css",
"start": "yarn css && PORT=5000 react-scripts start",
"dev": "yarn cosmos",
"build": "yarn css && 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"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"sideEffects": [
"./src/i18n.js"
]
}