-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.18 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "worldaffairscon.org",
"type": "module",
"packageManager": "[email protected]",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev --mode dev",
"build": "vite build --mode prod",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"lint": "eslint src && prettier --plugin prettier-plugin-svelte --check .",
"lint:fix": "eslint --fix src && prettier --plugin prettier-plugin-svelte --write .",
"prepare": "husky install",
"email:dev": "email dev --dir src/lib/server/email/templates"
},
"dependencies": {
"@auth/core": "^0.18.6",
"@auth/sveltekit": "^0.3.16",
"@dicebear/collection": "^7.0.5",
"@dicebear/core": "^7.0.5",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@popperjs/core": "^2.11.8",
"@react-email/components": "^0.0.11",
"@react-email/render": "0.0.7",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@xata.io/client": "^0.28.4",
"dompurify": "^3.1.6",
"gsap": "^3.12.5",
"oslo": "^1.1.3",
"react": "^18.2.0",
"react-email": "1.9.5",
"rehype-preset-minify": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"smooth-dnd": "^0.12.1",
"swiper": "^8.4.7",
"three": "^0.154.0",
"unified": "^11.0.4",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.41.2",
"@popperjs/core": "^2.11.8",
"@sveltejs/adapter-netlify": "^2.0.8",
"@sveltejs/kit": "^1.30.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/svelte": "^3.2.2",
"@types/dompurify": "^3.0.5",
"@types/luxon": "^3.4.2",
"@types/react": "^18.2.59",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/three": "^0.152.1",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^0.32.4",
"@vitest/ui": "^0.32.4",
"@xata.io/cli": "^0.15.8",
"@xata.io/netlify": "^0.1.27",
"autoprefixer": "^10.4.17",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-svelte": "^2.35.1",
"gsap": "^3.12.2",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"msw": "2.0.1",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.1",
"puppeteer": "^21.11.0",
"svelte": "^3.59.2",
"svelte-check": "^3.6.4",
"svelte-french-toast": "^1.2.0",
"tailwindcss": "^3.4.1",
"tsafe": "^1.6.6",
"tslib": "^2.6.2",
"typescript": "5.1.6",
"vite": "^4.5.2",
"vite-plugin-iso-import": "^1.1.0",
"vitest": "^0.32.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pnpm": {
"overrides": {
"protobufjs@>=6.10.0 <7.2.4": ">=7.2.4",
"follow-redirects@<1.15.4": ">=1.15.4",
"@adobe/css-tools@<4.3.2": ">=4.3.2",
"axios@<1.6.0": ">=1.6.0",
"get-func-name@<2.0.1": ">=2.0.1"
}
}
}