-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.79 KB
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
{
"name": "root-loops",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "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 --check . && eslint .",
"format": "prettier --write .",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"test:e2e-docker": "docker run -i --rm --ipc=host -v $(pwd):/playwright -w /playwright mcr.microsoft.com/playwright:v1.62.0-noble npm run test:e2e",
"test:unit": "vitest",
"prepare": "svelte-kit sync && husky || true"
},
"lint-staged": {
"*.{js,jsx,ts,svelte}": "npm run lint --"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/kit": "^2.70.3",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/svelte": "^5.4.2",
"@types/culori": "^4.0.1",
"ansi_up": "^6.0.6",
"eslint": "^10.9.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"svelte": "^5.56.10",
"svelte-check": "^4.7.6",
"svelte-feather-icons": "^4.2.0",
"typescript-eslint": "^8.67.0",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"dependencies": {
"@fontsource-variable/fira-code": "^5.3.0",
"@fontsource/luckiest-guy": "^5.3.0",
"culori": "^4.0.2"
}
}