-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
45
46
47
48
49
{
"name": "timemap",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=@timemap/web",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo check-types",
"db:generate": "turbo db:generate --filter=@timemap/db",
"db:migrate": "turbo db:migrate --filter=@timemap/db",
"db:seed": "turbo db:seed --filter=@timemap/db",
"search:index": "turbo search:index --filter=@timemap/db"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.8.17",
"typescript": "5.9.2"
},
"packageManager": "pnpm@10.32.1",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/timemap-project/timemap.git"
},
"homepage": "https://github.com/timemap-project/timemap#readme",
"bugs": {
"url": "https://github.com/timemap-project/timemap/issues"
},
"keywords": [
"history",
"knowledge-graph",
"timeline",
"gis",
"map",
"open-source",
"nextjs",
"postgresql",
"meilisearch",
"education",
"visualization"
],
"engines": {
"node": ">=18"
}
}