-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "vite-template-solid",
"version": "0.0.1",
"description": "",
"scripts": {
"start": "vite",
"dev": "vite --port=5173",
"build": "vite build",
"serve": "vite preview",
"pret": "prettier --write ./src",
"lint": "eslint --fix --ext .tsx,.ts src/",
"postinstall": "typewind generate",
"test": "vitest --ui",
"coverage": "vitest run --coverage"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/coverage-c8": "^0.30.1",
"@vitest/ui": "^0.30.1",
"autoprefixer": "^10.4.13",
"clear-module": "^4.1.2",
"daisyui": "^2.42.1",
"eslint": "^8.37.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.12.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jsdom": "^21.1.1",
"postcss": "^8.4.19",
"prettier": "^2.8.7",
"prettier-plugin-typewind": "^0.0.8",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.3",
"vite": "^3.0.9",
"vite-plugin-solid": "^2.3.0",
"vite-tsconfig-paths": "^3.6.0",
"vitest": "^0.30.1"
},
"dependencies": {
"@felte/solid": "^1.2.7",
"@felte/validator-yup": "^1.0.11",
"@solid-primitives/autofocus": "^0.0.106",
"@solid-primitives/context": "^0.2.1",
"@solid-primitives/destructure": "^0.1.12",
"@solid-primitives/event-bus": "^1.0.6",
"@solid-primitives/i18n": "^1.1.2",
"@solid-primitives/keyboard": "^1.2.2",
"@solidjs/router": "^0.8.2",
"@thisbeyond/solid-dnd": "^0.7.4",
"class-variance-authority": "^0.5.2",
"solid-devtools": "^0.23.1",
"solid-form-handler": "^1.2.0",
"solid-heroicons": "^3.1.1",
"solid-js": "^1.5.1",
"solid-toast": "^0.5.0",
"solid-use": "^0.6.2",
"solid-utils": "^0.8.1",
"typewind": "^0.1.3",
"yup": "^1.1.1"
}
}