-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
96 lines (96 loc) · 3.05 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
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"description": "Next.js boilerplate with husky, lint-staged, eslint + prettier, jest, react-testing-library, storybook, ghaction and plop.",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check \"**/*.{ts,tsx,json}\"",
"lint": "next lint",
"eslint:format": "eslint src --fix",
"test": "jest test",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"postinstall": "husky",
"generate": "pnpm plop --plopfile ./.plop/plopfile.js"
},
"engines": {
"node": ">=18.20.2"
},
"packageManager": "[email protected]+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b",
"dependencies": {
"@t3-oss/env-nextjs": "0.11.1",
"clsx": "2.1.1",
"next": "15.1.3",
"react": "19.0.0-rc-65a56d0e-20241020",
"react-dom": "19.0.0-rc-65a56d0e-20241020",
"tailwind-merge": "2.6.0",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.3.6",
"@storybook/blocks": "^8.4.2",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.3.6",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.18.1",
"autoprefixer": "10.4.20",
"babel-jest": "29.7.0",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import-helpers": "2.0.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "0.11.1",
"eslint-plugin-testing-library": "7.1.1",
"globals": "^15.14.0",
"husky": "9.1.7",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "15.2.10",
"pinst": "3.0.0",
"plop": "4.0.1",
"postcss": "8.4.49",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.9",
"storybook": "^8.4.7",
"tailwind-scrollbar": "3.1.0",
"tailwindcss": "3.4.15",
"typescript": "5.6.3"
},
"lint-staged": {
"src/**/*": [
"pnpm prettier:format",
"pnpm eslint:format"
]
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}