-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"name": "skraafoto-frontend",
"version": "3.10.0",
"description": "Webapplikation, som gør det muligt at finde og vise skråfotos.",
"main": "./public/index.html",
"type": "module",
"scripts": {
"dev": "export NODE_ENV=development && cp ../web-config.test.js public/config.js || : && node esbuild.js",
"build": "export NODE_ENV=production && node esbuild.js",
"docs": "jsdoc --configure docs/jsdoc-conf.json",
"test": "npm run test-unit && npm run test-e2e",
"test-e2e": "npx playwright test",
"test-unit": "node --test test/unit/*.test.js",
"serve-docs": "python3 -m http.server 8001 --directory docs/api",
"test-ci": "export BASEURL=https://test16.dataforsyningen.dk && export CI=true && npx playwright test",
"test-local": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dataforsyningen/skraafoto_frontend.git"
},
"keywords": [
"skråfoto",
"ortofoto",
"SDFI",
"Klimadatastyrelsen"
],
"author": {
"name": "Klimadatastyrelsen",
"email": "[email protected]",
"url": "https://kds.dk/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Dataforsyningen/skraafoto_frontend/issues"
},
"homepage": "https://github.com/Dataforsyningen/skraafoto_frontend#readme",
"dependencies": {
"@dataforsyningen/designsystem": "^7.0.0",
"@dataforsyningen/gsearch-ui": "^2.0.1",
"@dataforsyningen/saul": "^3.4.0",
"jspdf": "^2.5.1",
"mobx": "^6.12.1",
"ol": "^10.0.0",
"proj4": "^2.10.0"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@playwright/test": "^1.41.0",
"esbuild": "^0.16.17",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"jsdoc": "^4.0.2"
}
}