-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"name": "running-page-2.0-monorepo",
"version": "2.0.0",
"private": true,
"description": "A modern running data visualization platform - monorepo",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=apps/web",
"build": "npm run build --workspace=apps/web",
"start": "npm run start --workspace=apps/web",
"lint": "npm run lint --workspace=apps/web",
"type-check": "npm run type-check --workspace=apps/web",
"clean": "rm -rf apps/web/.next apps/web/out node_modules apps/web/node_modules",
"migrate": "node scripts/migrate-data.js",
"db:init": "node -e \"require('./apps/web/src/lib/database/connection').getDatabase(); console.log('Database initialized')\"",
"db:migrate": "npm run migrate",
"vercel-build": "cd apps/web && npm run build",
"vercel-dev": "cd apps/web && npm run dev"
},
"devDependencies": {
"@types/node": "^20.19.35",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.0.0 <25.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:oiahoon/running2.0.git"
},
"author": "Joey Huang",
"license": "MIT"
}