-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.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
87
88
89
90
91
92
93
94
{
"name": "pokecompanion",
"version": "0.0.1",
"private": true,
"engines": {
"node": "18.17.1",
"npm": "9.6.7"
},
"scripts": {
"d1:local": "wrangler d1 execute pokecompanion_search --local --file=./src/schema.sql",
"d1:remote": "wrangler d1 execute pokecompanion_search --remote --file=./src/schema.sql",
"dev": "vite dev",
"dev:cf": "npm run build && wrangler pages dev .svelte-kit/cloudflare --compatibility-date=2024-03-04 --live-reload",
"build": "npm run build:app",
"build:assets": "node scripts/socialpreviews/socialGenerator.js",
"build:app": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"scripts:legends-sprites": "node scripts/manual-sprites/legends-script.js",
"scripts:swsh-sprites": "node scripts/manual-sprites/swsh-script.js",
"scripts:sv-sprites": "node scripts/manual-sprites/sv-script.js",
"test:integration": "playwright test",
"test:integration-ui": "playwright test --ui",
"test:unit": "vitest",
"test:unit:watch": "vitest --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@cloudflare/workers-types": "^4.20240208.0",
"@playwright/test": "^1.37.1",
"@storybook/addon-essentials": "^8.2.2",
"@storybook/addon-interactions": "^8.2.2",
"@storybook/addon-links": "^8.2.2",
"@storybook/addon-svelte-csf": "^4.1.4",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-themes": "^8.2.2",
"@storybook/blocks": "^8.2.2",
"@storybook/svelte": "^8.2.2",
"@storybook/sveltekit": "^8.2.2",
"@storybook/test": "^8.2.2",
"@sveltejs/adapter-cloudflare": "^3.0.1",
"@sveltejs/adapter-vercel": "^4.0.0",
"@sveltejs/kit": "^2.5.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@testing-library/svelte": "^5.1.0",
"@types/lodash-es": "^4.17.8",
"@types/pako": "^2.0.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte": "^2.30.0",
"esm": "^3.2.25",
"jest-dom": "^4.0.0",
"jsdom": "^24.0.0",
"lodash-es": "^4.17.21",
"msw": "^2.2.14",
"node-fetch": "^3.3.2",
"postcss": "^8.4.28",
"postcss-nesting": "^12.1.5",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"save-svg-as-png": "^1.4.17",
"sharp": "^0.33.2",
"storybook": "^8.2.2",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.0.0"
},
"type": "module",
"dependencies": {
"@jill64/sentry-sveltekit-cloudflare": "^1.7.2",
"@sentry/browser": "^7.86.0",
"@sentry/integrations": "^7.94.1",
"jdenticon": "^3.2.0",
"pako": "^2.1.0",
"pocketbase": "^0.18.2",
"uuid": "^9.0.1"
}
}