-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 979 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
{
"name": "kamite",
"version": "0.0.0",
"scripts": {
"prewatch": "rimraf ./target/web",
"dev": "vite",
"prebuild": "rimraf ./target/web",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src/web",
"lint-fix": "eslint --fix ./src/web"
},
"devDependencies": {
"@solid-devtools/logger": "~0.9.7",
"@types/babel__core": "~7.20.5",
"@types/node": "~22.10.6",
"@typescript-eslint/eslint-plugin": "~8.20.0",
"@typescript-eslint/parser": "~8.20.0",
"eslint": "~9.18.0",
"rimraf": "~6.0.1",
"typescript": "~5.7.3",
"vite": "~6.0.7",
"vite-plugin-solid": "~2.11.0"
},
"dependencies": {
"@floating-ui/core": "~1.6.9",
"@floating-ui/dom": "~1.6.13",
"@solid-primitives/scheduled": "~1.4.4",
"csstype": "3.1.3",
"goober": "2.1.16",
"solid-js": "~1.9.4",
"solid-styled-components": "~0.28.5"
},
"private": true
}