-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "next-boilerplate",
"version": "1.0.0",
"description": "Minimalistic fullstack boilerplate to quick-start Next.js development in TypeScript, optimized for blazing-fast performance with Bun & Turbopack 🚀",
"author": "Raja Rakotonirina <[email protected]>",
"license": "MIT",
"type": "module",
"files": [".next"],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/next-boilerplate.git"
},
"homepage": "https://github.com/RajaRakoto/next-boilerplate#readme",
"bugs": "https://github.com/RajaRakoto/next-boilerplate/issues",
"engines-annotation": "Requires React 18.2.0 or higher and Next 14.1.3 or higher.",
"engines": {
"node": ">=20.10.0",
"next": ">=14.1.3"
},
"keywords": [
"typescript",
"nextjs",
"next",
"bunjs",
"bun",
"turbopack",
"minimalist",
"fullstack",
"boilerplate",
"template",
"starter"
],
"scripts": {
"preview": "next start",
"clean": "rimraf .next playwright-report",
"dev": "next dev --turbo",
"build": "bun run clean && next build",
"sitemap": "next-sitemap --config next-sitemap.config.cjs",
"test:unit": "bun test ./tests/*.test.ts",
"test:unit:watch": "bun test --watch ./tests/*.test.ts",
"test:e2e": "rimraf playwright-report && playwright test ./e2e/*.spec.ts",
"typecheck": "tsc --noEmit --incremental false",
"biome:start": "biome start",
"biome:stop": "biome stop",
"biome:fix": "biome check --fix .",
"biome:unsafe": "biome check --fix --unsafe .",
"eslint": "eslint --config .eslintrc.cjs --report-unused-disable-directives --max-warnings 0 .",
"prettier": "prettier --config .prettierrc --write .",
"backups": "grunt backups",
"pkg-check": "depcheck",
"pkg-upgrade": "ncu --interactive --format group --packageManager bun",
"versioning": "ungit",
"npm-version:major": "npm version major",
"npm-version:minor": "npm version minor",
"npm-version:patch": "npm version patch",
"nvm": "nvm use",
"script:sass-charset": "cd scripts && bun sass-charset.js"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.7",
"next": "14.2.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@playwright/test": "^1.47.0",
"@svgr/webpack": "^8.1.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "latest",
"@types/eslint": "8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"autoprefixer": "^10.4.20",
"depcheck": "^1.4.7",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"grunt-cli": "^1.5.0",
"grunt-contrib-compress": "^2.0.0",
"jest": "^29.7.0",
"load-grunt-tasks": "^5.1.0",
"next-sitemap": "^4.2.3",
"npm-check-updates": "^17.1.1",
"playwright": "^1.47.0",
"postcss": "^8.4.45",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"rimraf": "^6.0.1",
"sass": "1.77.6",
"tailwindcss": "3.4.10",
"ts-jest": "^29.2.5",
"typescript": "5.5.4",
"ungit": "^1.5.27"
}
}