-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "muallimlive",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@tanstack/react-query": "^4.29.18",
"ahooks": "^3.7.8",
"antd": "^5.6.3",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"dompurify": "^2.4.5",
"localforage": "^1.10.0",
"localforage-observable": "^2.1.1",
"lodash": "^4.17.21",
"next": "13.4.5",
"next-pwa": "^5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-infinite-scroller": "^1.2.6",
"react-player": "^2.12.0",
"react-quill": "^2.0.0",
"react-virtuoso": "^4.3.11",
"react-visibility-sensor": "^5.1.1",
"rxjs": "^7.8.1",
"tailwindcss": "^3.3.2",
"workbox-window": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@types/dompurify": "^2.4.0",
"@types/lodash": "^4.14.195",
"@types/node": "20.3.1",
"@types/react": "^18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.24",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.5.1",
"prettier": "2.8.8",
"typescript": "^5.1.3",
"webpack": "^5.88.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts?(x)": "eslint --fix",
"*": "prettier --write --ignore-unknown"
},
"volta": {
"node": "18.16.1"
},
"pnpm": {
"overrides": {
"semver@<7.5.2": ">=7.5.2"
}
}
}