-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "giftcard-nft",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"format": "next lint --fix --dir src"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@blockfrost/blockfrost-js": "^5.4.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/themes": "^1.1.2",
"@tanstack/react-query": "^4.35.0",
"@tanstack/react-query-devtools": "^4.35.0",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"eslint-config-next": "13.4.19",
"lucid-cardano": "^0.10.7",
"next": "13.4.19",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"satori": "^0.10.4",
"typescript": "5.2.2",
"zod": "^3.22.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}