-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 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
{
"name": "montserrat-reports",
"version": "4.0.0",
"description": "Montserrat reports for SeaSketch Next",
"main": "src/index.js",
"private": false,
"scripts": {
"start-data": "http-server data/dist -c-1",
"__test": "geoprocessing test",
"test": "npm run test:unit && npm run test:smoke",
"test:unit": "npm run __test -- --group=unit --passWithNoTests",
"test:unit:matching": "npm run __test -- --runInBand --group=unit --passWithNoTests -t",
"test:smoke": "start-server-and-test start-data 8080 'npm run __test -- --runInBand --group=smoke --silent'",
"test:smoke:matching": "npm run __test -- --runInBand --group=smoke -t",
"add:template": "geoprocessing add:template",
"import:data": "geoprocessing import:data",
"import:data_": "geoprocessing import:data",
"reimport:data": "geoprocessing reimport:data",
"reimport:data_": "geoprocessing reimport:data",
"publish:data": "geoprocessing publish:data",
"precalc:data": "start-server-and-test 'http-server data/dist -c-1 -p 8001' http://localhost:8001 precalc:data_",
"precalc:data_": "geoprocessing precalc:data",
"precalc:data:clean": "geoprocessing precalc:data:clean",
"install:scripts": "mkdir -p scripts && cp -r node_modules/@seasketch/geoprocessing/dist/base-project/scripts/* scripts",
"translation:install": "rm -rf src/i18n/baseLang && cp -r node_modules/@seasketch/geoprocessing/dist/base-project/src/i18n/baseLang src/i18n",
"translation:extract": "rm -rf src/i18n/lang/en && NODE_ENV=development npx babel 'src/**/*.{ts,tsx}' > /dev/null && mv extractedTranslations/en src/i18n/lang/en && rm -rf extractedTranslations && npx ts-node scripts/extractExtraTerms.ts && echo 'Translations extracted to src/lang/en and src/i18n/extraTerms.json'",
"translation:publish": "npx ts-node src/i18n/bin/publishTerms.ts",
"translation:import": "npx ts-node src/i18n/bin/importTerms.ts",
"translation:sync": "npm run translation:extract && npm run translation:publish && npm run translation:import",
"create:function": "geoprocessing create:function",
"create:client": "geoprocessing create:client",
"start:client": "geoprocessing start:client",
"synth": "geoprocessing synth",
"bootstrap": "geoprocessing bootstrap",
"deploy": "geoprocessing deploy",
"destroy": "geoprocessing destroy",
"build": "geoprocessing build:lambda && geoprocessing build:client",
"build:client": "geoprocessing build:client",
"build:lambda": "geoprocessing build:lambda",
"start-storybook": "geoprocessing start-storybook",
"url": "geoprocessing url",
"clear-results": "geoprocessing clear-results",
"clear-all-results": "geoprocessing clear-all-results",
"prepare": "npm run translation:install"
},
"keywords": [
"@seasketch/geoprocessing"
],
"dependencies": {
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/bbox-clip": "^6.5.0",
"@turf/boolean-valid": "^6.5.0",
"@turf/combine": "^6.5.0",
"@turf/flatten": "^6.5.0",
"@turf/invariant": "^6.5.0",
"@turf/kinks": "^6.5.0",
"@turf/points-within-polygon": "^6.5.0",
"d3": "^7.8.5",
"hull.js": "^1.0.4",
"i18next-browser-languagedetector": "^7.0.1",
"react-i18next": "^12.2.0",
"union-subdivided-polygons": "^0.9.1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@seasketch/geoprocessing": "6.1.3-experimental-rasterGroupMetrics.0",
"@turf/boolean-disjoint": "^6.5.0",
"@turf/boolean-valid": "^6.5.0",
"@types/d3": "^7.4.3",
"@types/hull.js": "^1.0.4",
"@types/request": "^2.48.8",
"babel-plugin-i18next-extract": "^0.9.0",
"request": "^2.88.2"
},
"repositoryUrl": "https://github.com/seasketch/montserrat-reports",
"author": "Peter Menzies",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/seasketch/montserrat-reports.git"
},
"homepage": "https://github.com/seasketch/montserrat-reports#readme",
"bugs": {
"url": "https://github.com/seasketch/montserrat-reports/issues"
}
}