-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.58 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.58 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
{
"name": "icube-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:port": "next dev --turbopack --port",
"dev:debug": "NODE_OPTIONS='--inspect' next dev --turbopack",
"prebuild": "node scripts/generate-versioned-ipas.js",
"build": "next build --turbopack",
"build:analyze": "ANALYZE=true next build --turbopack",
"start": "next start",
"start:port": "next start --port",
"lint": "eslint",
"lint:fix": "eslint --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next .turbo node_modules/.cache",
"clean:all": "rm -rf .next .turbo node_modules package-lock.json && npm install",
"deps:check": "npm outdated",
"deps:update": "npm update",
"info": "next info",
"warp:dev": "echo '🚀 Starting Next.js dev server with Turbopack...' && npm run dev",
"warp:build": "echo '🔨 Building for production...' && npm run build && echo '✅ Build complete!'",
"warp:clean-dev": "npm run clean && echo '🧹 Cache cleared!' && npm run dev"
},
"dependencies": {
"adm-zip": "^0.5.16",
"bplist-creator": "^0.1.1",
"bplist-parser": "^0.3.2",
"next": "^15.5.14",
"plist": "^3.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/adm-zip": "^0.5.7",
"@types/node": "^20",
"@types/plist": "^3.0.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.5.14",
"tailwindcss": "^4",
"typescript": "^5"
}
}