-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 943 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 943 Bytes
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
{
"name": "@10tance/tileserver",
"version": "0.1.0",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc --build --verbose",
"start": "node dist/index.js",
"vercel": "vercel",
"vercel-build": "yarn workspaces focus @10tance/tileserver ; yarn tiles:build"
},
"dependencies": {
"@10tance/db": "workspace:packages/db",
"@10tance/map": "workspace:packages/map",
"@janishutz/colorthief": "^3.0.1",
"@vercel/blob": "^0.23.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"jimp": "^1.1.2",
"leaflet": "^1.9.4",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3"
},
"devDependencies": {
"@types/cors": "^2",
"@types/express": "^4",
"@types/get-pixels": "^3.3.4",
"@types/leaflet": "^1.9.12",
"@types/node": "^22.1.0",
"@types/pg": "^8",
"tslib": "^2.6.3",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}