-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "civ1browser-react",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Civilization 1 clone built with React, Vite, Jotai, and Bootstrap",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.11.2",
"canvas-confetti": "^1.9.4",
"react": "^18.3.1",
"react-bootstrap": "^2.10.10",
"react-dom": "^18.3.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.6.0",
"vite": "^7.2.7",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}