-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.29 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.29 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "solidstart-tanstackquery-tailwind-modules",
"version": "0.1.0",
"private": true,
"description": "Solid Start, TanStack Query and Tailwind CSS with CSS Modules",
"keywords": [
"solidstart",
"tanstack-query",
"tailwind",
"storybook",
"typescript",
"vite",
"mock-service-worker",
"solidjs",
"vitest",
"css module"
],
"showcases": [
{
"kit": "solidstart-tanstackquery-tailwind-modules",
"name": "GitHub Showcase",
"repo": "https://github.com/thisdot/starter.dev-github-showcases/tree/main/solidstart-tanstackquery-tailwind-modules",
"app": "https://solidstart-tanstackquery-tailwind-modules.starter.dev",
"icon": "GitHub"
}
],
"hasShowcase": true,
"contributors": [
"Chinedu Okpala <chinedu.okpala@thisdot.co>",
"Daian Scuarissi <scuarissid@gmail.com>",
"Mattia Magi <mattia.magi@thisdot.co>",
"Mark Shenouda <mark@thisdot.co>",
"Jerry Hogan <jerry.hogan@thisdot.co>"
],
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start",
"test": "vitest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint --ext .ts,.tsx ./src",
"lint-fix": "eslint --ext .ts,.tsx ./src --fix",
"format": "prettier --write ./src --ignore-path .gitignore"
},
"type": "module",
"devDependencies": {
"@babel/core": "7.21.0",
"@solidjs/testing-library": "0.6.1",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-backgrounds": "6.5.16",
"@storybook/addon-docs": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/addon-measure": "6.5.16",
"@storybook/addon-outline": "6.5.16",
"@storybook/addons": "6.5.16",
"@storybook/builder-vite": "0.1.41",
"@storybook/channel-postmessage": "6.5.16",
"@storybook/channel-websocket": "6.5.16",
"@storybook/client-api": "6.5.16",
"@storybook/html": "6.5.16",
"@storybook/preview-web": "6.5.16",
"@storybook/testing-library": "0.0.13",
"@tanstack/solid-query": "4.24.10",
"@testing-library/jest-dom": "5.16.5",
"@typescript-eslint/parser": "5.53.0",
"autoprefixer": "10.4.13",
"babel-loader": "8.3.0",
"eslint-plugin-solid": "0.9.4",
"eslint-plugin-unused-imports": "2.0.0",
"jsdom": "21.1.0",
"msw": "0.35.0",
"msw-storybook-addon": "1.6.0",
"postcss": "8.4.21",
"solid-start-node": "0.2.21",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"vite": "3.2.5",
"vitest": "0.28.5",
"whatwg-fetch": "3.6.2"
},
"dependencies": {
"@solidjs/meta": "0.28.4",
"@solidjs/router": "0.8.2",
"solid-js": "1.7.4",
"solid-start": "0.2.26",
"undici": "5.26.2"
},
"engines": {
"node": ">=16"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"@babel/*",
"webpack",
"@storybook/*",
"@types/react",
"eslint"
]
}
},
"npm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"@babel/*",
"webpack",
"@storybook/*"
]
}
},
"msw": {
"workerDirectory": "public"
}
}