-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bookofhours-catalog",
"version": "1.5.0",
"description": "Web frontend for Book of Hours",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"postinstall": "rimraf node_modules/.vite",
"prebuild": "pnpm run clean",
"build": "cross-env NODE_ENV=production vite build",
"typecheck": "tsc --noEmit",
"preview": "cross-env NODE_ENV=development vite preview",
"start": "cross-env NODE_ENV=development vite",
"watch-errors": "tsc --noEmit --watch",
"format": "prettier --write src",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"private": true,
"keywords": [
"Book of Hours"
],
"author": "SunsetFi",
"license": "ISC",
"packageManager": "pnpm@10.17.1",
"devDependencies": {
"@types/lodash": "^4.17.20",
"@types/luxon": "^3.7.1",
"@types/platform": "^1.3.6",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@types/react-router": "^5.1.20",
"@vitejs/plugin-react": "^5.0.4",
"cross-env": "^6.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rxjs-spy": "^8.0.2",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vite-plugin-checker": "^0.10.3",
"vite-plugin-svgr": "^4.5.0"
},
"dependencies": {
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@popperjs/core": "^2.11.8",
"@tanstack/react-table": "^8.21.3",
"@tanstack/table-core": "^8.21.3",
"clsx": "^2.1.1",
"history": "^5.3.0",
"http-status-codes": "^2.3.0",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"microinject": "^0.12.0",
"platform": "^1.3.6",
"react": "^19.1.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.1.1",
"react-router": "^7.9.3",
"rxjs": "^7.8.2",
"scheduler": "^0.26.0",
"secrethistories-api": "^1.42.0",
"type-fest": "^2.19.0"
}
}