-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "template-next",
"description": "A esm template for Next.js projects",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"author": "Mike Valeriano <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:mkvlrn/template-next"
},
"keywords": ["nextjs", "esm", "template"],
"engines": {
"node": ">=22.6"
},
"imports": {
"#*": "./src/*"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"test:ci": "yarn test --bail=1 --reporter=default && yarn test:e2e --bail=1 --reporter=default",
"test": "vitest",
"test:e2e": "vitest --config e2e/vitest.config.ts",
"tidy:ci": "biome check --no-errors-on-unmatched",
"tidy": "yarn tidy:ci --fix",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.6.0",
"@tailwindcss/postcss": "^4.0.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "^3.0.5",
"autoprefixer": "^10.4.20",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"postcss": "^8.5.2",
"tailwindcss": "^4.0.6",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"dependencies": {
"next": "^15.1.7",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}