-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 837 Bytes
/
package.json
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": "nextjs-swa-rewrite-bug",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:standalone": "node .next/standalone/server.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [],
"author": "Bertrand Riviere",
"repository": {
"type": "git",
"url": "https://github.com/bertrand-riviere/nextjs-swa-rewrite-bug.git"
},
"homepage": "https://github.com/bertrand-riviere/nextjs-swa-rewrite-bug.git",
"devDependencies": {
"husky": "^8.0.3",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3"
},
"dependencies": {
"axios": "^1.6.0",
"next": "14.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"undici": "^5.27.0"
},
"engines": {
"node": "^18"
}
}