-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.64 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.64 KB
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
77
78
79
80
{
"name": "@datopian/datapackage-views-js",
"version": "1.4.5",
"private": false,
"license": "MIT",
"main": "/dist/App.js",
"module": "/dist/App.js",
"dependencies": {
"@tanstack/react-table": "^8.20.1",
"datapackage-render": "git+https://github.com/frictionlessdata/datapackage-render-js.git#646b85eaccbb6961d5a734c54fbb00a4c9923b5e",
"i18next": "^19.0.3",
"i18next-browser-languagedetector": "^4.0.1",
"leaflet": "^1.9.4",
"plotly.js-basic-dist": "^2.35.0",
"react": "^18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.3.1",
"react-i18next": "^11.2.7",
"react-leaflet": "^2.4.0",
"react-loader-spinner": "^6.1.6",
"react-pdf-js": "^5.1.0",
"react-plotly.js": "^2.6.0",
"react-scripts": "4.0.3",
"react-table-v6": "^6.8.6",
"react-vega": "4.0.2",
"vega-lib": "^4.4.0"
},
"scripts": {
"cosmos": "cosmos",
"cosmos:export": "cosmos-export",
"watch:css": "postcss src/stylesheets/index.css -o src/index.css -w",
"build:css": "postcss src/stylesheets/index.css -o src/index.css",
"start": "NODE_OPTIONS=\"--openssl-legacy-provider\" react-scripts start",
"dev": "npm run watch:css & react-scripts start & npm run cosmos",
"build": "NODE_OPTIONS=\"--openssl-legacy-provider\" react-scripts build",
"build:non-optimized": "node ./build-non-split.js && mv build/static/js/*.js dist/js/main.js",
"build:package": "rm -rf dist/ && mkdir dist && NODE_ENV=production npx babel src/ -d dist/ --copy-files",
"coverage": "cat coverage/lcov.info | coveralls",
"test": "react-scripts test --coverage --watchAll=false --collectCoverageFrom=src/**/*.js --collectCoverageFrom=!src/serviceWorker.js && npm run coverage",
"test:watch": "react-scripts test",
"test:only": "react-scripts test --watchAll=false",
"eject": "react-scripts eject"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.25.0",
"@babel/core": "^7.25.0",
"@babel/preset-env": "^7.25.0",
"@babel/preset-react": "^7.24.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"autoprefixer": "^9.8.6",
"coveralls": "^3.1.1",
"postcss-cli": "^8.3.1",
"react-cosmos": "^6.2.0",
"rewire": "^7.0.0",
"tailwindcss": "^2.2.19"
}
}