-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "annuaire",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"update-types": "supabase gen types typescript --project-id 'obgvvzkqopswdaczgpxl' --schema public > src/lib/types/database.types.ts",
"test:watch": "vitest src",
"test:e2e": "playwright test",
"ts:check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"ts:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@histoire/plugin-svelte": "^0.12.0",
"@playwright/test": "1.25.0",
"@sveltejs/kit": "^1.16.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"histoire": "^0.12.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.56.1",
"svelte": "^3.59.1",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^4.10.6",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"vite": "^4.0.1",
"vitest": "^0.25.3"
},
"type": "module",
"dependencies": {
"@supabase/auth-helpers-sveltekit": "0.9.0",
"@supabase/supabase-js": "^2.7.1",
"@sveltejs/adapter-vercel": "^2.4.3",
"dialog-polyfill": "^0.5.6",
"dotenv": "^16.0.3",
"supabase": "^1.34.5",
"uuid": "^9.0.0"
}
}