-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "starter-for-solid",
"version": "1.0.0",
"description": "My boilerplate for Web Frontend using SolidJS.",
"keywords": [
"solidjs",
"typescript",
"vite",
"tailwindcss",
"pnpm",
"boilerplate-template"
],
"homepage": "https://github.com/hey3/starter-for-solid#readme",
"bugs": {
"url": "https://github.com/hey3/starter-for-solid/issues"
},
"license": "MIT",
"author": "hey3",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hey3/starter-for-solid.git"
},
"engines": {
"node": "22.x"
},
"packageManager": "pnpm@9.15.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier . --check --ignore-unknown",
"format:fix": "prettier . --write --ignore-unknown",
"lint": "pnpm lint:eslint && pnpm lint:style",
"lint:fix": "pnpm lint:eslint-fix && pnpm lint:style-fix",
"lint:eslint": "eslint ./**/*.{js,ts,tsx}",
"lint:eslint-fix": "eslint --fix ./**/*.{js,cjs,ts,tsx}",
"lint:style": "stylelint 'src/**/*.css'",
"lint:style-fix": "stylelint --fix 'src/**/*.css'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:virtual-update": "vitest run --update",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit --incremental false"
},
"dependencies": {
"@solidjs/router": "0.15.3",
"solid-js": "1.9.4"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@solidjs/testing-library": "0.8.10",
"@storybook/addon-a11y": "8.5.3",
"@storybook/addon-essentials": "8.5.3",
"@storybook/html": "8.5.3",
"@storybook/html-vite": "8.5.3",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/user-event": "14.6.1",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-solid": "0.14.5",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.14.0",
"jsdom": "26.0.0",
"prettier": "3.4.2",
"storybook": "8.5.3",
"stylelint": "16.14.1",
"stylelint-config-recess-order": "6.0.0",
"stylelint-config-standard": "37.0.0",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0",
"vite": "6.0.11",
"vite-plugin-solid": "2.11.0",
"vitest": "3.0.4"
}
}