-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
58
{
"name": "@recordex/frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"fix": "npm run lint && npm run format",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@googlemaps/react-wrapper": "^1.1.35",
"@metamask/providers": "^14.0.1",
"@mui/icons-material": "^5.14.15",
"@mui/material": "^5.14.15",
"@mui/x-data-grid": "^6.17.0",
"@mui/x-date-pickers": "^6.17.0",
"@react-google-maps/api": "^2.19.2",
"@recordex/smartcontract": "^0.1.2",
"axios": "^1.6.0",
"dayjs": "^1.11.10",
"encoding": "^0.1.13",
"ethers": "^6.8.1",
"firebase": "^10.5.2",
"jotai": "^2.5.0",
"next": "14.0.3",
"react": "^18",
"react-dom": "^18",
"react-pdf": "^7.7.0"
},
"devDependencies": {
"@types/google.maps": "^3.54.5",
"@types/node": "^20",
"@types/pdfjs-dist": "^2.10.378",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"pdfjs-dist": "^4.0.379",
"prettier": "^3.0.3",
"typescript": "^5",
"webpack": "^5.90.1"
},
"lint-staged": {
"src/**/*": "npm run fix"
}
}