-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 4 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
{
"name": "california-reports-spacing",
"version": "0.1",
"description": "",
"private": false,
"type": "module",
"keywords": [
"@seasketch/geoprocessing"
],
"repositoryUrl": "https://github.com/seasketch/california-reports",
"repository": {
"type": "git",
"url": "git+https://github.com/seasketch/california-reports.git"
},
"bugs": {
"url": "https://github.com/seasketch/california-reports/issues"
},
"homepage": "https://github.com/seasketch/california-reports#readme",
"author": "Abby Vath Meyer",
"license": "BSD-3-Clause",
"scripts": {
"__test": "TEST_ROOT=$(pwd) geoprocessing test",
"add:template": "geoprocessing add:template",
"bootstrap": "geoprocessing bootstrap",
"build": "geoprocessing build:lambda && geoprocessing build:client",
"build:client": "geoprocessing build:client",
"build:lambda": "geoprocessing build:lambda",
"clear-all-results": "geoprocessing clear-all-results",
"clear-results": "geoprocessing clear-results",
"clear:results": "geoprocessing clear:results",
"create:client": "geoprocessing create:client",
"create:function": "geoprocessing create:function",
"create:report": "geoprocessing create:report",
"deploy": "geoprocessing deploy",
"destroy": "geoprocessing destroy",
"extract:translation": "npx tsx scripts/translationExtract.ts",
"import:data": "geoprocessing import:data",
"import:translation": "npx tsx src/i18n/bin/importTerms.ts",
"lint:prettier": "prettier --write --ignore-unknown .",
"precalc:data": "start-server-and-test 'http-server data/dist -c-1 -p 8001' http://localhost:8001 precalc:data_",
"precalc:data:clean": "geoprocessing precalc:data:clean",
"precalc:data_": "geoprocessing precalc:data",
"prepare": "husky",
"publish:data": "geoprocessing publish:data",
"publish:translation": "npx tsx src/i18n/bin/publishTerms.ts",
"reimport:data": "geoprocessing reimport:data",
"start-data": "http-server data/dist -c-1",
"start:client": "geoprocessing start:client",
"start:data": "http-server data/dist -c-1",
"storybook": "PROJECT_PATH=$(pwd) npx tsx .storybook/genReportStories.ts && storybook dev -p 6006 --no-open",
"storybook:install": "npx tsx scripts/storybookInstall.ts",
"sync:translation": "npm run extract:translation && npm run publish:translation && npm run import:translation",
"synth": "geoprocessing synth",
"test": "start-server-and-test start:data 8080 'npm run __test'",
"test:matching": "npm run __test -- -t",
"upgrade": "geoprocessing upgrade",
"url": "geoprocessing url"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@aws-sdk/util-stream": "^3.374.0",
"@babel/cli": "^7.25.6",
"@babel/plugin-syntax-import-attributes": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@seasketch/geoprocessing": "7.0.2-experimental-socketError.3",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/jest-dom": "^6.5.0",
"@turf/turf": "7.1.0",
"@types/d3": "^7.4.3",
"@types/geobuf": "^3.0.4",
"@types/graphlib": "^2.1.12",
"@types/request": "^2.48.12",
"babel-plugin-i18next-extract": "0.10.0",
"d3": "^7.9.0",
"geoblaze": "2.8.0",
"geojson-antimeridian-cut": "^0.1.0",
"globals": "^15.9.0",
"globby": "^14.0.2",
"graphlib": "^2.1.8",
"husky": "^9.1.5",
"i18next-browser-languagedetector": "^8.0.0",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react-i18next": "^15.0.1",
"simple-statistics": "^7.8.3",
"storybook": "^8.2.9",
"union-subdivided-polygons": "^0.9.1",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"vitest-fetch-mock": "^0.4.2",
"zx": "^8.1.5"
}
}