-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 917 Bytes
/
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
{
"name": "maple-simulator",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"prepare": "husky install",
"start": "next start"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"biome format --write"
]
},
"dependencies": {
"@fontsource/roboto-flex": "^5.0.8",
"@hyoretsu/react-components": "^1.7.9",
"@hyoretsu/react-hooks": "^1.2.5",
"@hyoretsu/utils": "^1.8.0",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"sass": "^1.69.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@next/env": "^14.0.4",
"@svgr/webpack": "^8.1.0",
"@tsconfig/next": "^2.0.1",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.7",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"typescript": "^5.3.3"
}
}