-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "dostanesie-pl-widget",
"version": "1.0.0",
"type": "module",
"scripts": {
"postinstall": "tsx src/utils/fetchSubjectsCli/index.ts",
"dev": "vite --host",
"build:lib": "rm -rf dist/ && tsc --noEmit && vite build --mode lib",
"build:static": "rm -rf dist/ && tsc --noEmit && vite build --mode static",
"preview": "pnpm build:static && vite preview --mode static --host",
"fmt": "prettier --write src/*",
"fmt:staged": "lint-staged --no-stash",
"prepare": "husky"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "7.25.9",
"@chakra-ui/react": "3.13.0",
"@emotion/cache": "11.14.0",
"@emotion/react": "11.14.0",
"@fontsource-variable/montserrat": "5.2.5",
"@types/node": "22.13.10",
"@types/react": "19.0.12",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react": "4.3.4",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"next-themes": "0.4.6",
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "4.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"react-icons": "5.5.0",
"react-shadow": "20.6.0",
"tsx": "4.19.3",
"typescript": "5.8.2",
"valibot": "1.0.0",
"vite": "6.2.2",
"vite-plugin-static-copy": "2.3.0",
"vite-svg-loader": "5.1.0",
"vite-tsconfig-paths": "5.1.4",
"wretch": "2.11.0"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write"
}
}