-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 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
{
"name": "ai-attribution-toolkit",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "NODE_ENV=production vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "vitest run",
"test:e2e": "cypress run",
"predeploy": "npm run test && npm run test:e2e && npm run build",
"deploy": "gh-pages -d build -t"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@types/cypress": "^1.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"cypress": "^14.3.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"gh-pages": "^6.3.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"sass-embedded": "^1.83.4",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.0",
"vite-imagetools": "^7.1.0",
"vitest": "^3.1.1"
},
"dependencies": {
"@carbon/type": "^11.38.0",
"@lukulent/svelte-umami": "^0.0.4",
"carbon-components-svelte": "^0.87.5",
"carbon-icons-svelte": "^13.1.0",
"carbon-preprocess-svelte": "^0.11.10",
"zod": "^3.24.3"
}
}