-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "frontend",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "vinxi dev --port 3000",
"build": "vinxi build",
"start": "vinxi start",
"start-node": "node ./.output/server/index.mjs",
"=== LINTERS ===": "",
"lint": "eslint src --fix --ext .tsx,.ts",
"prettier": "prettier 'src/**/*.(ts|tsx)' --write",
"tsc": "tsc --noEmit",
"code-check": "pnpm lint --max-warnings=0 && pnpm tsc"
},
"dependencies": {
"@kobalte/core": "^0.12.4",
"@kobalte/tailwindcss": "^0.9.0",
"@solid-primitives/scheduled": "^1.4.2",
"@solidjs/meta": "^0.29.3",
"@solidjs/router": "^0.13.0",
"@solidjs/start": "^0.7.5",
"@tanstack/solid-table": "^8.12.0",
"class-variance-authority": "^0.7.0",
"solid-js": "^1.8.15",
"tailwind-merge": "^2.2.1",
"typescript": "^5.2.2",
"vinxi": "^0.3.10"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"autoprefixer": "10.4.16",
"daisyui": "4.6.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-solid": "0.13.1",
"eslint-plugin-tailwindcss": "3.14.0",
"postcss": "8.4.33",
"postcss-import": "^16.0.1",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-pxtorem": "^6.1.0",
"postcss-simple-vars": "^7.0.1",
"stylelint": "^16.2.1",
"tailwindcss": "3.4.1",
"ts-node": "^10.9.2",
"tsx": "4.7.0",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": ">=18"
}
}