-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.43 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.43 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
{
"name": "qwik-graphql-tailwind",
"description": "Qwik, GraphQL, and TailwindCSS",
"keywords": [
"qwik",
"graphql",
"tailwind",
"storybook",
"typescript",
"vite",
"qwik-city",
"vitest"
],
"version": "0.0.1",
"showcases": [
{
"kit": "qwik-graphql-tailwind",
"name": "GitHub Showcase",
"repo": "https://github.com/thisdot/starter.dev-github-showcases/tree/main/qwik-graphql-tailwind",
"app": "https://qwik-graphql-tailwind.starter.dev",
"icon": "GitHub"
}
],
"hasShowcase": true,
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.types": "tsc --incremental --noEmit",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"lint": "eslint \"src/**/*.ts*\"",
"prettier": "prettier --write \"**/*.+(ts|tsx)\"",
"prettier.check": "prettier --check \"**/*.+(ts|tsx)\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open http://localhost:5173 --mode ssr",
"qwik": "qwik",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "vitest",
"test.coverage": "vitest --coverage"
},
"devDependencies": {
"@builder.io/qwik": "0.17.5",
"@builder.io/qwik-city": "0.104.0",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-vite": "0.4.2",
"@storybook/html": "6.5.16",
"@storybook/testing-library": "0.0.13",
"@types/eslint": "8.21.0",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"@vitest/coverage-c8": "^0.28.5",
"autoprefixer": "10.4.13",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-qwik": "0.17.5",
"eslint-plugin-storybook": "0.6.10",
"node-fetch": "3.3.0",
"postcss": "8.4.21",
"prettier": "2.8.4",
"prettier-plugin-tailwindcss": "0.2.2",
"tailwindcss": "3.2.6",
"typescript": "4.9.5",
"vite": "3.2.5",
"vite-tsconfig-paths": "3.6.0",
"vitest": "^0.28.5"
},
"dependencies": {
"undici": "^5.14.0"
}
}