-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "solid-app",
"version": "0.0.0",
"description": "Bulletproof Solid SPA Template",
"license": "MIT",
"author": "Tri Rizeki Rifandani",
"packageManager": "[email protected]",
"msw": {
"workerDirectory": "public"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write .",
"type": "tsc --project tsconfig.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"msw:init": "msw init public/ --save",
"msw:delete": "rm -rf public/mockServiceWorker.js",
"start": "vite",
"build": "pnpm msw:delete && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:preview": "vite preview --outDir html",
"test:preview:coverage": "vite preview --outDir coverage"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@iconify-icon/solid": "^1.0.8",
"@solidjs/testing-library": "^0.8.4",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/eslint-plugin-query": "^4.34.1",
"@testing-library/jest-dom": "^6.1.3",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-istanbul": "^0.34.4",
"@vitest/ui": "^0.34.4",
"autoprefixer": "^10.4.15",
"daisyui": "^3.7.4",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-solid": "^0.13.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^6.0.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"msw": "^1.3.1",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-solid": "^2.7.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.4"
},
"dependencies": {
"@felte/solid": "^1.2.11",
"@felte/validator-zod": "^1.0.17",
"@formkit/auto-animate": "^0.8.0",
"@kobalte/core": "^0.11.0",
"@rifandani/nxact-yutiriti": "^1.2.2",
"@solid-primitives/connectivity": "^0.3.17",
"@solid-primitives/event-listener": "^2.3.0",
"@solid-primitives/media": "^2.2.5",
"@solid-primitives/storage": "^2.1.1",
"@solid-primitives/timer": "^1.3.7",
"@solidjs/router": "^0.8.3",
"@tanstack/solid-query": "^4.35.3",
"axios": "^1.5.0",
"solid-element": "^1.7.1",
"solid-js": "^1.7.11",
"tailwind-merge": "^1.14.0",
"type-fest": "^4.3.1",
"zod": "^3.22.2"
}
}