This repository was archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "@mpigeon/client-student",
"private": true,
"version": "0.0.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "vite",
"build": "vite build",
"build:tsc": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" --fix"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@tauri-apps/api": "^1.0.0-rc.3",
"ahooks": "^3.3.8",
"antd": "^4.19.5",
"axios": "^0.26.1",
"dayjs": "^1.11.1",
"qrcode.react": "^3.0.1",
"react": "17",
"react-dom": "17",
"react-redux": "^8.0.0",
"react-router-dom": "6"
},
"devDependencies": {
"@tauri-apps/cli": "^1.0.0-rc.8",
"@types/react": "17",
"@types/react-dom": "17",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"lint-staged": "^12.4.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"simple-git-hooks": "^2.7.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"vite": "^2.9.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
}
}