-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "storyforge-frontend",
"version": "1.0.0",
"description": "StoryForge AI-powered story generation platform — frontend build pipeline",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json",
"build:css": "tailwindcss -i web/css/main.css -o web/css/main.built.css --minify",
"build:vite": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"format": "prettier --write \"web/js/**/*.ts\""
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/alpinejs": "^3.13.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"autoprefixer": "^10.4.21",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^26.1.0",
"postcss": "^8.5.3",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.4.0",
"vite": "^6.3.1",
"vite-plugin-compression": "^0.5.1",
"vitest": "^3.1.1"
}
}