-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
86 lines (86 loc) · 2.64 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
{
"name": "qwik-graphql-tailwind",
"description": "Qwik, GraphQL, and TailwindCSS",
"keywords": [
"qwik",
"graphql",
"tailwind"
],
"version": "0.1.0",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"build": "qwik build",
"build-storybook": "build-storybook",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adaptors/static/vite.config.ts",
"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",
"serve": "netlify deploy",
"start": "vite --open http://localhost:5173 --mode ssr",
"storybook": "start-storybook -p 6006",
"test": "vitest",
"test.coverage": "vitest --coverage",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "0.16.1",
"@builder.io/qwik-city": "0.0.128",
"@builder.io/qwik-react": "0.2.1",
"@storybook/addon-actions": "6.5.13",
"@storybook/addon-essentials": "6.5.13",
"@storybook/addon-interactions": "6.5.13",
"@storybook/addon-links": "6.5.13",
"@storybook/builder-vite": "0.2.5",
"@storybook/client-api": "^6.5.13",
"@storybook/html": "6.5.13",
"@storybook/testing-library": "0.0.13",
"@types/eslint": "8.4.7",
"@types/node": "18.11.3",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"@vitest/coverage-c8": "^0.24.3",
"autoprefixer": "10.4.12",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-qwik": "0.11.1",
"eslint-plugin-storybook": "0.6.7",
"msw": "^0.48.2",
"msw-storybook-addon": "^1.6.3",
"netlify-cli": "^12.0.11",
"node-fetch": "3.2.10",
"postcss": "8.4.18",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.2.0",
"typescript": "4.8.4",
"vite": "3.2.1",
"vite-tsconfig-paths": "3.5.2",
"vitest": "^0.24.3"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.7",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"prism-react-renderer": "^1.3.5",
"query-string": "^7.1.1",
"react-markdown": "^8.0.3",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1"
},
"msw": {
"workerDirectory": "public"
}
}