-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "root-loops",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=21.0.0"
},
"scripts": {
"dev": "vite dev",
"build": "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 --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:integration-docker": "docker run -i --rm --ipc=host -v $(pwd):/playwright -w /playwright mcr.microsoft.com/playwright:v1.49.0-noble npm run test:integration",
"test:unit": "vitest",
"prepare": "husky || true"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.8.3",
"@sveltejs/vite-plugin-svelte": "^4.0.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"ansi_up": "^6.0.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5",
"svelte-check": "^4.1.0",
"svelte-feather-icons": "^4.2.0",
"tslib": "^2.8.1",
"typescript-eslint": "^8.15.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"dependencies": {
"@fontsource-variable/fira-code": "^5.0.18",
"@fontsource/luckiest-guy": "^5.1.0",
"culori": "^4.0.1"
}
}