-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 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
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
{
"name": "xboy2012",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "tsx scripts/clean",
"dev": "next dev",
"build": "tsx scripts/build",
"start": "next start",
"lint": "eslint && stylelint '**/*.css'",
"typecheck": "tsx scripts/typecheck",
"prepare": "husky && tsx scripts/prepare",
"test": "jest"
},
"dependencies": {
"next": "^16.0.10",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0",
"workbox-window": "^7.4.0"
},
"devDependencies": {
"@eslint/config-helpers": "^0.5.0",
"@eslint/js": "^9.39.2",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/eslint-plugin-next": "^16.0.10",
"@next/mdx": "^16.0.10",
"@stylistic/stylelint-config": "^3.0.1",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/mdx": "^2.0.13",
"@types/node": "^24.10.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.49.0",
"esbuild": ">=0.27.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-better-tailwindcss": "^3.8.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.4.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"postcss-calc": "^10.1.1",
"postcss-load-config": "^6.0.1",
"prettier": "^3.7.4",
"schema-dts": "^1.1.5",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-prettier": "^5.0.3",
"tailwindcss": "^4.1.18",
"terser": "^5.44.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"whatwg-fetch": "^3.6.20"
},
"resolutions": {
"postcss": "^8.5.6",
"@eslint/config-helpers": "^0.5.0",
"@eslint/plugin-kit": "^0.5.0",
"esbuild": ">=0.27.1"
},
"engineStrict": true,
"engines": {
"node": "^24.10.0"
}
}