This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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": "fastify-dx-solidjs-example",
"version": "0.0.1",
"description": "Real world app using Fastify-DX, Solid.js, Auth0 and GraphQL",
"keywords": [
"solidjs",
"vite",
"fastify-dx",
"auth0",
"graphql"
],
"homepage": "https://zentered.co/articles/fastify-dx-and-solidjs-in-the-real-world/",
"bugs": {
"url": "https://github.com/zentered/fastify-dx-solidjs-example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/fastify-dx-solidjs-example.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/patrickheneise)"
],
"type": "module",
"scripts": {
"build": "pnpm build:client && pnpm build:server",
"build:client": "vite build --emptyOutDir --outDir dist/client --ssrManifest",
"build:server": "vite build --emptyOutDir --outDir dist/server --ssr index.js",
"coverage": "vitest run --coverage",
"dev": "node -r dotenv/config server.js --dev",
"start": "node server.js",
"lint": "eslint --fix . --ext .js --ext .jsx --ext md --ext mdx",
"pretty": "prettier --write \"src/**/*.{js,jsx,md,mdx,css,scss}\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,json,md,yml}": [
"prettier --write"
],
"*.{mjs,js}": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@auth0/auth0-spa-js": "^1.22.1",
"@urql/core": "^2.6.0",
"auth0": "^2.42.0",
"devalue": "^2.0.1",
"eslint-plugin-markdown": "^2.2.1",
"fastify": "^4.10.2",
"fastify-dx-solid": "^0.0.4",
"fastify-vite": "3.0.0-beta.23",
"graphql": "^16.5.0",
"ky": "^0.31.0",
"ky-universal": "^0.10.1",
"parse-path": "^5.0.0",
"solid-app-router": "^0.4.1",
"solid-heroicons": "^2.0.3",
"solid-js": "^1.4.7",
"unihead": "^0.0.6",
"vite": "^3.2.10",
"vite-plugin-solid": "^2.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.3",
"commitlint": "^17.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-solid": "^0.7.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"unocss": "^0.44.2"
}
}