-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 KB
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
{
"name": "ss13webmap",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "cross-env LEVEL=debug NODE_ENV=development tsx watch src/index.ts",
"build": "tsc && pnpm esbuild",
"start": "cross-env NODE_ENV=production node dist/index.js",
"esbuild": "node scripts/esbuild.mjs",
"esbuild:watch": "node scripts/esbuild.mjs --watch",
"generateschema": "cross-env typescript-json-schema --esModuleInterop --ignoreErrors --excludePrivate tsconfig.json -o config.schema.json MapConfig",
"generatemaps:old": "cross-env node scripts/generateMaps.mjs",
"generatemaps": "webmapgen"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/static": "^8.1.1",
"@fastify/view": "^11.1.0",
"fastify": "^5.3.2",
"liquidjs": "^10.21.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.18",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"esbuild": "^0.25.4",
"esbuild-sass-plugin": "^3.3.1",
"postcss": "^8.5.3",
"sass": "^1.88.0",
"tsx": "^4.19.4",
"typescript-json-schema": "^0.65.1"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.10.0"
}
}