-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 857 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
{
"name": "preact-typescript-vite-taste",
"version": "1.0.0",
"description": "Template app",
"main": "index.html",
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@rollup/plugin-inject": "^4.0.4",
"@stylistic/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^9.0.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"rollup": "^2.0.0",
"typescript": "^4.8.4",
"typescript-formatter": "^7.2.2",
"vite": "^5.1.1"
},
"dependencies": {
"@benchristel/taste": "0.5.0",
"preact": "^10.11.0"
},
"scripts": {
"build": "yarn vite build",
"dev": "yarn vite",
"format": "devtools/format.sh",
"setup": "yarn install; yarn run husky install",
"smoke": "yarn vite preview --open",
"ts": "yarn tsc --watch --noEmit"
}
}