-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
112 lines (112 loc) · 3.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@tgve/tgvejs",
"description": "Turing Geovisualization Engine (TGVE) front-end npm package.",
"version": "1.5.2",
"main": "dist/index.js",
"author": "Layik Hama (https://github.com/layik)",
"contributors": [
"Roger Beecham",
"Nik Lomax",
"Lydia France",
"Nick Barlow",
"Roly Perera"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tgve/tgvejs"
},
"files": [
"README.md",
"dist/"
],
"dependencies": {
"@turf/bbox": "^6.5.0",
"@turf/bezier-spline": "^6.5.0",
"@turf/boolean-contains": "^6.5.0",
"@turf/centroid": "^6.5.0",
"baseui": "^12.2.0",
"csv2geojson": "^5.1.2",
"d3-array": "^3.2.1",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-shape": "^3.2.0",
"deck.gl": "^8.3.14",
"html2canvas": "^1.3.2",
"luxon": "^3.2.0",
"prop-types": "^15.6.2",
"react-map-gl": "5.2.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-vis": "^1.11.7",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": ">=5.2.2 < 7",
"underscore": "^1.12.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "yarn install --check-files && react-scripts test",
"test-debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"coverage": "react-scripts test --coverage .",
"dist": "node_modules/.bin/babel src/ --out-dir dist --copy-files --no-copy-ignored",
"bundle": "npx rollup -c 'rollup.config.js'",
"watch": "watch --wait=1 'yarn run dist' ./src",
"pub-dry": "rm -rf dist && yarn run dist && npm --dry-run publish",
"pub": "rm -rf dist && yarn run dist && yarn publish"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
],
"externals": {
"react": "commonjs react",
"react-dom": "commonjs react-dom"
},
"output": {
"libraryTarget": "commonjs2"
},
"peerDependencies": {
"react": ">= 16.8.0 < 18",
"react-dom": ">= 16.8.0 < 18"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-image": "^3.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"chromedriver": "^108.0.0",
"geckodriver": "^3.2.0",
"mutationobserver-shim": "^0.3.7",
"postcss": "^8.3.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.1",
"react-test-renderer": "^16.14.0",
"rollup": "^3.23.1",
"rollup-plugin-postcss": "^4.0.2",
"selenium-webdriver": "^4.0.0-alpha.8",
"sinon": "^15.1.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"watch": "^1.0.2",
"webpack-cli": "^5.1.3"
},
"jest": {
"transformIgnorePatterns": [
"!node_modules/"
]
}
}