-
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) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "checklist",
"version": "1.4.1",
"type": "module",
"scripts": {
"dev": "vite --host",
"preview": "vite preview",
"build": "tsc -p ./src/tsconfig.json && vite build",
"build-offline": "set \"offline=true\" && npm run build",
"lint": "eslint .",
"add-version-tags": "node ./scripts/add-version-tags.ts",
"changelog": "auto-changelog --template keepachangelog --unreleased --commit-limit 0 --starting-version v1.4.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"auto-changelog": "^2.5.0",
"eslint": "^9.39.4",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^7.3.1"
}
}