-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "mathflow",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.7.1",
"@cortex-js/compute-engine": "^0.4.2",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"firebase": "^9.4.1",
"framer-motion": "^5.3.0",
"history": "^5.1.0",
"lodash": "^4.17.21",
"mathlive": "^0.69.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-router-dom": "^6.0.2",
"reactfire": "^4.2.0"
},
"devDependencies": {
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"prettier": "2.4.1",
"typescript": "^4.4.4",
"vite": "^2.6.14"
},
"lint-staged": {
"*.{ts,tsx, d.ts}": "eslint --cache --fix",
"*.{ts,tsx,d.ts,json,md}": "prettier --write"
}
}