-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 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
{
"name": "domindev-domindynamics",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"analyze:bundle": "node _scripts/analyze-bundle.cjs",
"preview": "vite preview",
"preview:e2e": "vite preview --host 127.0.0.1 --port 4174",
"lint": "eslint .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test:smoke": "vitest run src/test/app.smoke.test.jsx",
"test:e2e": "playwright test",
"check": "npm run format:check && npm run lint && npm run test:smoke && npm run build",
"optimize:images": "node _scripts/optimize-images.cjs",
"optimize:video": "node _scripts/optimize-video.cjs"
},
"keywords": [],
"author": "DominDev / DominDynamics",
"license": "MIT",
"dependencies": {
"framer-motion": "^12.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.59.1",
"@testing-library/react": "^16.3.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"ffmpeg-static": "^5.3.0",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"postcss": "^8.4.49",
"prettier": "^3.8.3",
"rollup-plugin-visualizer": "^7.0.1",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.17",
"terser": "^5.37.0",
"vite": "^6.0.0",
"vitest": "^4.1.5"
}
}