-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1002 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1002 Bytes
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
{
"private": true,
"name": "wordle",
"version": "0.0.1",
"engines": {
"node": ">=22"
},
"license": "MIT",
"scripts": {
"build": "vite build",
"serve": "vite preview",
"dev": "vite",
"lint": "eslint src",
"postinstall": "npx simple-git-hooks"
},
"nano-staged": {
"**/*.{css,js}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"devDependencies": {
"@preact/preset-vite": "2.10.2",
"eslint": "9.39.1",
"eslint-config-preact": "2.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react-hooks": "7.0.1",
"nano-staged": "0.9.0",
"prettier": "3.6.2",
"simple-git-hooks": "2.13.1",
"sirv-cli": "3.0.1",
"vite": "7.2.4"
},
"dependencies": {
"classnames": "2.5.1",
"preact": "10.27.2",
"preact-render-to-string": "6.6.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
}
}