This repository has been 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
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
54
55
56
57
{
"name": "@mpigeon/client",
"version": "0.3.0",
"description": "Message Pigeon Frontend (teacher & admin teacher)",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
"build": "pnpm --filter @mpigeon/client-teacher run build && pnpm --filter @mpigeon/client-admin run build "
},
"author": "Justin Sun",
"license": "AGPL-3.0",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.3.1",
"@mui/lab": "^5.0.0-alpha.74",
"@mui/material": "^5.4.0",
"ahooks": "^3.1.9",
"axios": "^0.25.0",
"dayjs": "^1.11.0",
"i18next": "^21.6.14",
"i18next-browser-languagedetector": "^6.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.26.1",
"react-i18next": "^11.16.2",
"react-router-dom": "6",
"react-toastify": "^8.1.1"
},
"devDependencies": {
"@faker-js/faker": "^6.1.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@vitejs/plugin-react": "^1.0.7",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"lint-staged": "^12.3.7",
"msw": "^0.39.2",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"typescript": "^4.4.4",
"vite": "2.8.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
}
}