-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 920 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 920 Bytes
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
{
"name": "cyber-agent",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"sdk"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc -b"
},
"dependencies": {
"@testing-library/dom": "^10.4.1",
"border-beam": "^1.0.1",
"framer-motion": "^11.18.0",
"lucide-react": "^0.469.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.9",
"jsdom": "^25.0.1",
"tsup": "^8.5.1",
"typescript": "~5.7.2",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}