-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nextjs-typscript-tailwind-starter",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"test": "vitest tests",
"test:ci": "vitest run test",
"prepare": "husky install",
"test:e2e": "playwright test"
},
"dependencies": {
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@playwright/test": "1.51.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/node": "22.13.8",
"@types/react": "18.2.79",
"@types/testing-library__jest-dom": "5.14.9",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.21",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.23.0",
"eslint-config-next": "15.2.3",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-testing-library": "7.1.1",
"husky": "9.1.7",
"jsdom": "26.0.0",
"lint-staged": "15.5.0",
"postcss": "8.5.3",
"prettier": "3.5.3",
"tailwindcss": "3.4.17",
"typescript": "5.8.2",
"vitest": "3.0.9"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint . --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}