-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 827 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 827 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
{
"name": "wrapp0r",
"version": "0.1.0",
"private": true,
"description": "Transform any Excel data into Spotify Wrapped-style visualizations using AI",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"clean": "turbo clean && rm -rf node_modules",
"dev:web": "turbo dev --filter=@wrapp0r/web",
"dev:server": "turbo dev --filter=@wrapp0r/server",
"dev:webapp": "turbo dev --filter=@wrapp0r/web --filter=@wrapp0r/server",
"build:web": "turbo build --filter=@wrapp0r/web",
"build:server": "turbo build --filter=@wrapp0r/server",
"build:electron": "turbo build --filter=@wrapp0r/electron"
},
"devDependencies": {
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
}
}