-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "maple-simulator",
"type": "module",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"format": "bun format:biome . & bun format:eslint .",
"format:biome": "biome check --diagnostic-level=error --write --unsafe",
"format:eslint": "eslint --quiet --fix",
"prepare": "git config --local core.hooksPath .githooks",
"start": "next start"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"biome format --write"
]
},
"dependencies": {
"@fontsource/roboto-flex": "^5.2.8",
"@hyoretsu/react-components": "^1.7.12",
"@hyoretsu/react-hooks": "^1.3.1",
"@hyoretsu/utils": "^1.16.0",
"@paralleldrive/cuid2": "^3.0.6",
"next": "^16.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"sass": "^1.97.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@eslint/js": "^9.39.2",
"@hyoretsu/configs": "^1.1.16",
"@next/env": "^16.1.1",
"@svgr/webpack": "^8.1.0",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-biome": "^2.1.3",
"eslint-plugin-jest": "^29.12.1",
"git-commit-msg-linter": "^5.0.8",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
},
"trustedDependencies": [
"@parcel/watcher"
]
}