-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.26 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
{
"name": "gtfs",
"description": "Global Fish Tracking System",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"serve": "npm run clean && NODE_ENV=development node tasks/server.mjs",
"build": "npm run clean && NODE_ENV=production node tasks/build.mjs",
"stage": "npm run clean && NODE_ENV=staging node tasks/build.mjs",
"clean": "rm -rf dist .parcel-cache",
"lint": "yarn lint:scripts",
"lint:scripts": "eslint app/",
"ts-check": "yarn tsc --noEmit --skipLibCheck",
"test": "echo \"Error: no test specified\" && exit 0"
},
"engines": {
"node": "20.x"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@parcel/reporter-bundle-analyzer": "^2.11.0",
"@parcel/reporter-bundle-buddy": "^2.11.0",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.2.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"assert": "^2.0.0",
"babel-jest": "^29.7.0",
"buffer": "^6.0.3",
"del": "^7.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"fancy-log": "^2.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.11.0",
"parcel-resolver-ignore": "^2.2.0",
"portscanner": "^2.2.0",
"posthtml-expressions": "^1.11.3",
"prettier": "^3.2.4",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"svgo": "^3.3.2",
"ts-jest": "^29.1.2",
"typescript": "*",
"util": "^0.12.3",
"watcher": "^2.3.1"
},
"dependencies": {
"@chakra-ui/react": "^2.9.3",
"@deck.gl/core": "^8.9.34",
"@deck.gl/mapbox": "^8.9.34",
"@devseed-ui/collecticons-chakra": "^3.0.3",
"@dsnp/parquetjs": "^1.8.5",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@tanstack/react-query": "^5.62.2",
"@types/d3": "^7.4.3",
"@types/geojson": "^7946.0.14",
"@types/mapbox-gl": "^2.7.20",
"axios": "^1.6.7",
"chakra-react-select": "^5.0.2",
"d3": "^7.9.0",
"date-fns": "^3.3.1",
"deck.gl": "^8.9.34",
"framer-motion": "^11.11.0",
"mapbox-gl": "^3.1.2",
"polished": "^4.3.1",
"react": "^18.2.0",
"react-cool-dimensions": "^3.0.1",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.7",
"wouter": "^3.3.5"
},
"parcelIgnore": [
".*/meta/"
],
"alias": {
"$components": "~/app/components",
"$styles": "~/app/styles",
"$utils": "~/app/utils",
"$test": "~/test"
},
"@parcel/resolver-default": {
"packageExports": true
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}