-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.78 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "risunosu",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"commit": "git-cz",
"check": "concurrently \"bun:check:*(!tsc:)\"",
"check:biome": "biome check --fix --error-on-warnings",
"check:prettier": "prettier --write --cache .",
"check:tsc": "concurrently \"bun:check:tsc:*\"",
"check:tsc:base": "tsc --project tsconfig.base.json",
"check:tsc:src": "tsc --project tsconfig.src.json",
"check:cspell": "cspell --cache \"**/*\"",
"check:knip": "knip",
"ignore-sync": "ignore-sync .",
"prepare": "husky"
},
"dependencies": {
"@emotion/cache": "11.14.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "6.4.1",
"@mui/material": "6.4.1",
"@mui/material-nextjs": "6.3.1",
"@vercel/analytics": "1.4.1",
"@vercel/speed-insights": "1.1.0",
"next": "15.1.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"sharp": "0.33.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@commitlint/types": "19.5.0",
"@cspell/cspell-types": "8.17.2",
"@tsconfig/bun": "1.0.7",
"@tsconfig/next": "2.0.3",
"@tsconfig/strictest": "2.0.5",
"@types/bun": "1.2.0",
"@types/lint-staged": "13.3.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"commitizen": "4.3.1",
"concurrently": "9.1.2",
"cspell": "8.17.2",
"husky": "9.1.7",
"ignore-sync": "8.0.0",
"knip": "5.43.3",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"typescript": "5.7.3"
},
"trustedDependencies": ["@biomejs/biome", "@vercel/speed-insights", "sharp"],
"volta": {
"node": "22.13.1"
}
}