-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "slacktivist",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run build:initiatives && vite",
"build": "npm run build:initiatives && vite build",
"build:initiatives": "node scripts/build-initiatives.js",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"lint": "eslint . --ext .js,.svelte",
"lint:fix": "eslint . --ext .js,.svelte --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.0",
"autoprefixer": "^10.4.27",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^10.0.3",
"eslint-plugin-svelte": "^3.15.2",
"globals": "^17.3.0",
"gray-matter": "^4.0.3",
"jsdom": "^28.0.0",
"marked": "^17.0.4",
"postcss": "^8.5.8",
"svelte": "^5.53.9",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"handlebars": "^4.7.8",
"svelte-routing": "^2.13.0",
"tailwindcss": "^4.1.18"
}
}