-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.47 KB
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
94
95
96
97
98
99
100
101
102
103
{
"name": "game-nft-search-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"ts-node": "node -r @swc-node/register",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc --noEmit && eslint . --fix && prettier . --write",
"test": "jest",
"coverage": "jest --coverage"
},
"engines": {
"npm": "Please use pnpm",
"yarn": "Please use pnpm",
"node": ">= 16"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"parserOptions": {
"project": "tsconfig.json"
},
"extends": [
"next/core-web-vitals",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"rules": {
"@typescript-eslint/no-unused-vars": "off"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "@swc-node/jest"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tsc-files --noEmit",
"eslint --fix",
"prettier --write"
],
"*.{json,css,html}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@supabase/supabase-js": "1.35.4",
"@twind/next": "1.0.9",
"axios": "0.27.2",
"cross-fetch": "3.1.5",
"ethers": "^5.7.1",
"lodash": "^4.17.21",
"metamask-react": "^2.4.0",
"next": "12.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.4.0",
"react-intersection-observer": "9.4.0",
"react-range": "1.8.14",
"ts-dedent": "2.2.0",
"twind": "0.16.17"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@swc-node/jest": "1.5.2",
"@swc-node/register": "1.5.1",
"@terra-money/terra.js": "3.1.4",
"@tsconfig/strictest": "1.0.1",
"@types/jest": "28.1.6",
"@types/lodash": "^4.14.182",
"@types/node": "18.0.5",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"dotenv": "16.0.1",
"eslint": "8.20.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"pg": "^8.7.3",
"playwright": "1.24.2",
"prettier": "2.7.1",
"tsc-files": "1.1.3",
"typescript": "4.7.4",
"zx": "4.3.0"
}
}