-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.52 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
{
"name": "mappette-viewer",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"postinstall": "cd node_modules/cesium; npe --delete exports",
"schema-resource": "typescript-json-schema src/api/context/context-types.ts MappetteResource --module esnext -o src/api/context/resource.schema.json",
"schema-context": "typescript-json-schema src/api/context/context-types.ts Context --module esnext -o src/api/context/context.schema.json",
"schemas": "npm run schema-resource && npm run schema-context && npm run resource-validator && npm run context-validator",
"resource-validator": "node ./create-validator.mjs resource ./src/api/context/resource.schema.json ./src/api/context/resource.validator MappetteResource",
"context-validator": "node ./create-validator.mjs context ./src/api/context/context.schema.json ./src/api/context/context.validator Context"
},
"dependencies": {
"cesium": "^1.91.0",
"ol": "^6.13.0",
"preact": "^10.5.15",
"proj4": "^2.8.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.1.5",
"@types/proj4": "^2.5.2",
"ajv": "8.11.0",
"node-fetch": "^3.2.8",
"npe": "^1.2.0",
"postcss-nesting": "^10.1.3",
"prettier": "^2.5.1",
"rollup-plugin-copy": "^3.4.0",
"typescript": "^4.6.4",
"typescript-json-schema": "^0.54.0",
"vite": "^2.8.0"
}
}