-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
{
"name": "sveltekit-graphql-github",
"version": "0.1.0",
"license": "BSD-3-Clause",
"description": "Use Apollo Client with SvelteKit to Query a GraphQL API: we use the GitHub API to query our repos and learn a bit of SvelteKit along the way.",
"scripts": {
"dev": "vite dev",
"build": "sh ./patch-apollo-client.sh && vite build",
"preview": "vite preview",
"check": "svelte-check --fail-on-warnings",
"check:watch": "svelte-check --watch",
"lint": "prettier --check --plugin=prettier-plugin-svelte . && eslint .",
"lint:scss": "stylelint \"src/**/*.{css,scss,svelte}\"",
"format": "prettier --write --plugin=prettier-plugin-svelte .",
"prettier:check": "prettier --check --plugin=prettier-plugin-svelte ."
},
"devDependencies": {
"@apollo/client": "3.5.6",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.24.0",
"@fontsource/fira-sans": "^5.2.5",
"@fontsource/lato": "^5.2.5",
"@fontsource/merriweather": "^5.2.6",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.20.4",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"commitlint": "^19.8.0",
"dayjs": "^1.11.13",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-svelte": "^3.5.1",
"globals": "^16.0.0",
"graphql": "^16.10.0",
"graphql-tag": "^2.12.6",
"husky": "^9.1.7",
"node-fetch": "^3.3.2",
"postcss": "^8.5.3",
"postcss-html": "^1.8.0",
"prettier": "~3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"sass-embedded": "^1.86.3",
"stylelint": "^16.18.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.11.1",
"svelte": "^5.25.8",
"svelte-check": "^4.1.5",
"svelte-preprocess": "^6.0.3",
"svgo": "^3.3.2",
"typescript-eslint": "^8.29.1",
"vite": "^6.2.5",
"vite-node": "^3.1.1"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-graphql-github"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-graphql-github/issues"
},
"peerDependencies": {
"graphql": "^16.0.1",
"vite": "^3.0.2"
}
}