-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
93 lines (93 loc) · 2.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "my-next-boilerplate",
"version": "1.0.0",
"description": "My Nextjs boilerplate",
"author": "Nahee-Park",
"license": "ISC",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"lint:css": "stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.9.8",
"@metamask/providers": "^9.0.0",
"@tanstack/react-query": "^4.0.10",
"axios": "^0.27.2",
"daisyui": "^2.20.0",
"dayjs": "^1.11.4",
"emotion-reset": "^3.0.1",
"ethers": "^5.7.0",
"evmosjs": "^0.2.8",
"ipfs-http-client": "^57.0.3",
"mime": "^3.0.0",
"next": "12.1.6",
"nft.storage": "^7.0.0",
"papaparse": "^5.3.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "^7.34.2",
"react-responsive": "^9.0.0",
"react-spinners": "^0.13.4",
"react-toastify": "^9.0.8",
"recharts": "^2.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@emotion/babel-plugin": "^11.9.2",
"@keplr-wallet/types": "^0.10.13",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/node": "17.0.38",
"@types/papaparse": "^5.3.3",
"@types/react": "18.0.10",
"@types/react-dom": "18.0.5",
"@types/react-responsive": "^8.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.8",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "8.22.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"node-fetch": "*",
"postcss": "^8.4.14",
"postcss-html": "^1.4.1",
"postcss-syntax": "^0.36.2",
"prettier": "^2.6.2",
"stylelint": "^14.8.5",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-styled-components": "^0.1.1",
"tailwindcss": "^3.1.6",
"typescript": "4.7.2",
"undici": "*"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"git add"
],
"*.+{json|css|md}": [
"prettier --write",
"stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"git add"
]
}
}