-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 852 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 852 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
{
"name": "ror2-editor",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"webp": "@powershell ./scripts/convert_to_webp.ps1",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"file-saver": "^2.0.5",
"react": "~18.3.1",
"react-dom": "~18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/file-saver": "^2.0.7",
"@types/react": "~18.3.4",
"@types/react-dom": "~18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.2"
}
}