-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "territory-bro",
"version": "1.0.0-SNAPSHOT",
"description": "Territory Bro is a tool for managing territory cards in the congregations of Jehovah's Witnesses.",
"homepage": "https://territorybro.com",
"author": "Esko Luontola (https://www.luontola.fi)",
"license": "Apache-2.0",
"bugs": "https://github.com/luontola/territory-bro/issues",
"repository": {
"type": "git",
"url": "https://github.com/luontola/territory-bro.git"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.1",
"clipboard": "^2.0.11",
"htmx.org": "^2.0.3",
"i18next": "^23.16.8",
"idiomorph": "^0.3.0",
"lodash-es": "^4.17.21",
"ol": "^10.2.1",
"proj4": "^2.14.0",
"purecss": "^3.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"chai": "^5.1.2",
"crypto-js": "^4.2.0",
"jsdom": "^25.0.1",
"npm-check-updates": "^17.1.11",
"typescript": "^5.6.3",
"vite": "^4.5.3",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-i18next-loader": "^2.0.14",
"vitest": "^2.1.5"
},
"type": "module",
"engines": {
"node": ">= 21.0.0",
"npm": ">= 10.0.0"
},
"browserslist": [
"defaults"
],
"scripts": {
"test": "vitest run",
"autotest": "vitest watch",
"build": "vite build",
"autobuild": "vite build --watch",
"server-export": "vite-node web/src/server-export.ts",
"analyze": "vite-bundle-visualizer --sourcemap",
"lint": "tsc",
"browserslist": "browserslist",
"outdated": "npm-check-updates",
"upgrade": "npm-check-updates --interactive"
}
}