-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
{
"name": "yageum_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx,js,jsx}'",
"postinstall": "husky install",
"prepare": "husky",
"test": "jest --watch"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"axios": "^1.7.2",
"ethereumjs-tx": "^2.1.2",
"jotai": "^2.8.0",
"next": "14.1.1",
"next-use-funnel": "^0.3.2",
"react": "^18",
"react-daum-postcode": "^3.1.3",
"react-dom": "^18",
"react-hook-form": "^7.51.3",
"react-icons": "^5.1.0",
"react-signature-canvas": "^1.0.6",
"styled-components": "^6.1.8",
"swr": "^2.2.5",
"uuid": "^9.0.1",
"web3": "^4.9.0",
"web3-eth-contract": "^4.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@swc-jotai/react-refresh": "^0.1.0",
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.12",
"@types/navermaps": "^3.7.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-signature-canvas": "^1.0.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"typescript": "^5"
},
"eslintIgnore": [
"public/svg/index.tsx",
"src/app/map/@leftboard/page.tsx",
"src/components/map/mapview.tsx",
"jest.config.js"
]
}