-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "richard-unterberg.github.io.git",
"license": "MIT",
"author": "Richard Unterberg <https://github.com/richard-unterberg>",
"repository": {
"type": "git",
"url": "https://github.com/richard-unterberg/statetrain.git"
},
"private": true,
"version": "0.1.2",
"type": "module",
"scripts": {
"prepare": "lefthook install",
"dev": "vike dev",
"prod": "vike build && vike preview",
"build": "tsc && vike build",
"preview": "vike preview",
"lint": "biome lint --write .",
"format": "biome format --write .",
"check-types": "tsc --noEmit"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"bash -c tsc --noEmit"
]
},
"dependencies": {
"@vitejs/plugin-react": "^4.3.4",
"dotenv": "^16.4.7",
"lucide-react": "^0.473.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-styled-components": "^2.2.0",
"tone": "^15.0.4",
"vike": "^0.4.218",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"lefthook": "^1.10.10",
"typescript": "^5.7.3",
"unocss": "^65.4.3",
"vike-react": "^0.5.11",
"vite": "^6.0.11"
}
}