-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
50
{
"name": "winstall",
"version": "2.0.0",
"private": true,
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@serwist/next": "^9.5.7",
"@serwist/precaching": "^9.5.7",
"@serwist/sw": "^9.5.7",
"jsonwebtoken": "^9.0.3",
"next": "^15.5.15",
"next-auth": "^4.24.12",
"nprogress": "^0.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.71.2",
"react-icons": "^5.6.0",
"react-loading-skeleton": "^3.5.0",
"react-modal": "^3.16.3",
"tunnel": "^0.0.6",
"undici": "^7.24.6"
},
"overrides": {
"serialize-javascript": "^7.0.3",
"next": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
},
"scripts": {
"dev": "npm run clean:sw && next dev --turbopack",
"build": "next build",
"build:docker": "STANDALONE_BUILD=true next build",
"start": "next start",
"start:standalone": "node .next/standalone/server.js",
"lint": "next lint",
"clean:sw": "rm -f public/sw.js public/sw.js.map public/swe-worker-*.js"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"@types/react": "^18.3.18",
"sass": "^1.80.0",
"typescript": "6.0.2"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=9.0.0"
}
}