-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 906 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 906 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
27
28
29
30
31
32
33
34
35
{
"name": "repo-template-web-static-next",
"version": "0.1.0",
"private": true,
"description": "General static presentation template (Next.js + TypeScript).",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "15.2.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@testing-library/react": "16.1.0",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"eslint": "9.21.0",
"eslint-config-next": "15.2.0",
"jsdom": "26.0.0",
"prettier": "3.5.2",
"typescript": "5.8.2",
"vitest": "3.0.8"
},
"packageManager": "pnpm@10.6.3"
}