-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.11 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.11 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
{
"name": "vite-react-universal-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --mode production",
"build:test": "tsc && vite build --mode test",
"build:docker": "tsc && vite build --mode docker",
"preview": "vite preview",
"lint": "tsc && eslint . --ext .js,.ts,.jsx,.tsx --fix",
"format": "prettier --write \"./**/*.{html,tsx,ts,js,json,md}\"",
"prepare": "husky install",
"docker:build": "tsc && docker build -t docker-react .",
"docker:run": "docker rm -f docker-react && docker run --name docker-react -d -p 80:8082 docker-react",
"release:local": "pnpm docker:build && pnpm docker:run",
"log:tree": "tree -N -I \"node_modules|.git|.idea\" -a"
},
"dependencies": {
"@tanstack/react-query": "^5.85.5",
"@tanstack/react-query-devtools": "^5.85.5",
"@tanstack/react-router": "^1.131.28",
"@tanstack/react-router-devtools": "^1.131.28",
"axios": "^1.11.0",
"classnames": "^2.5.1",
"framer-motion": "^11.13.1",
"mitt": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vconsole": "^3.15.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.35.0",
"@tanstack/eslint-plugin-query": "^5.83.1",
"@tanstack/router-plugin": "^1.131.28",
"@types/node": "^22.10.1",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"sass": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.43.0",
"vite": "^6.0.2"
}
}