forked from fire-tribes/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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": "fires",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"postinstall": "husky install",
"format": "eslint './' --ext .ts,.tsx --fix && prettier --write ."
},
"dependencies": {
"@amplitude/analytics-browser": "^2.3.3",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.8.1",
"@tanstack/react-query": "^4.33.0",
"@tanstack/react-query-devtools": "^4.33.0",
"axios": "^0.27.2",
"chart.js": "^4.4.0",
"chartjs-plugin-datalabels": "^2.2.0",
"jotai": "^2.3.1",
"next": "12.3.4",
"next-auth": "^4.24.4",
"next-pwa": "^5.6.0",
"react": "17.0.2",
"react-chartjs-2": "^4",
"react-dom": "17.0.2",
"react-hook-form": "^7.34.2",
"sharp": "^0.32.6",
"universal-cookie": "^6.1.0",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "20.5.3",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache"
}
}