-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 KB
/
package.json
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
{
"name": "heimdall",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]+sha512.127dc83b9ea10c32be65d22a8efb4a65fb952e8fefbdfded39bdc3c97efc32d31b48b00420df2c1187ace28c921c902f0cb5a134a4d032b8b5295cbfa2c681e2",
"scripts": {
"prepare": "lefthook install",
"dev": "vite dev",
"build": "vite build",
"start": "vite preview",
"format": "biome format src",
"format:apply": "biome format --apply src",
"lint": "biome lint src",
"lint:apply": "biome lint --apply src"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.2.2",
"@mantine/core": "^7.10.0",
"@mantine/hooks": "^7.10.0",
"@saghen/hermes": "2.0.0-alpha.5",
"@tabler/icons-react": "^3.5.0",
"date-fns": "^3.6.0",
"jotai": "^2.8.1",
"jotai-optics": "^0.4.0",
"optics-ts": "^2.4.1",
"p-limit": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.11",
"wouter": "^3.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.10.7",
"@vitejs/plugin-react-swc": "^3.7.0",
"lefthook": "^1.6.12",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --apply --organize-imports-enabled=false --no-errors-on-unmatched",
"prettier --write"
]
}
}