-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "contenttransform",
"version": "0.1.0",
"private": true,
"description": "AI-powered content repurposing platform",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [
"content",
"ai",
"transformation",
"marketing",
"repurpose"
],
"author": "ContentTransform Team",
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"date-fns": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-router-dom": "^7.3.0",
"vite": "^4.4.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/node": "^22.13.11",
"autoprefixer": "^10.4.21",
"jest": "^29.6.2",
"jsdom": "^22.1.0",
"postcss": "^8.5.3",
"postcss-load-config": "^6.0.1",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vitest": "^0.34.1"
}
}