-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.09 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
95
{
"name": "symbols",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@8.5.1",
"scripts": {
"dev": "vite dev",
"dev:test": "node scripts/checkContainersWithError.js && dotenv -e .env.testing -- vite dev --mode testing",
"build": "vite build",
"build:node": "ADAPTER=NODE vite build",
"preview": "vite preview",
"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 .",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"docker:up": "dotenv -e .env.testing -- node scripts/startContainers.js",
"docker:down": "dotenv -e .env.testing -- node scripts/stopContainers.js",
"docker:check": "dotenv -e .env.testing -- node scripts/checkContainers.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "prisma generate"
},
"devDependencies": {
"@playwright/test": "1.33.0",
"@storybook/addon-essentials": "^7.0.17",
"@storybook/addon-interactions": "^7.0.17",
"@storybook/addon-links": "^7.0.17",
"@storybook/addon-mdx-gfm": "^7.0.17",
"@storybook/addon-svelte-csf": "^3.0.2",
"@storybook/blocks": "^7.0.17",
"@storybook/svelte": "^7.0.17",
"@storybook/sveltekit": "^7.0.17",
"@storybook/testing-library": "^0.1.0",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-node": "^1.2.4",
"@sveltejs/adapter-vercel": "^3.0.0",
"@sveltejs/kit": "^1.18.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@testing-library/user-event": "^14.4.3",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitest/coverage-c8": "^0.31.1",
"@vitest/ui": "^0.31.1",
"autoprefixer": "^10.4.14",
"chalk": "^5.2.0",
"daisyui": "^2.51.6",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-svelte3": "^4.0.0",
"jsdom": "^22.0.0",
"msw": "^1.2.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"prettier-plugin-tailwindcss": "^0.3.0",
"prisma": "^4.14.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.17",
"svelte": "^3.59.1",
"svelte-check": "^3.3.2",
"svelte-fragment-component": "^1.2.0",
"svelte-htm": "^1.2.0",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"vercel": "^29.4.0",
"vite": "^4.3.8",
"vitest": "^0.31.1"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "^3.337.0",
"@cntr/sveltekit": "^0.0.1",
"@prisma/client": "4.14.1",
"nanoid": "^4.0.2",
"pixi.js": "^7.2.4",
"postgres": "^3.3.4",
"svelte-seo": "^1.5.3",
"symbol-art-parser": "^0.1.1",
"uuid": "^9.0.0",
"zod": "^3.21.4"
}
}