-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"author": "vbetsch",
"dependencies": {
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"description": "Next repository template for my next projects",
"devDependencies": {
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vbetsch/config-eslint": "^1.0.5",
"@vbetsch/config-jest": "^1.0.3",
"@vbetsch/config-prettier": "^1.0.2",
"@vbetsch/config-tsconfig": "^1.0.4",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^30.4.1"
},
"engines": {
"node": "24.14.1"
},
"name": "template-next",
"private": true,
"scripts": {
"build": "next build",
"check:tsc": "tsc",
"format": "prettier --write .",
"lint": "eslint",
"lint:strict": "eslint --max-warnings=0",
"start:dev": "next dev",
"start:prod": "next start",
"test": "jest",
"test:cov": "jest --coverage"
},
"version": "1.0.0"
}