-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "virtual-trading-platform",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"format": "npx prettier --check .",
"format:fix": "npx prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@ethersproject/providers": "^5.5.2",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@types/react-window": "^1.8.5",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"bad-words": "^3.0.4",
"dayjs": "^1.10.7",
"ethers": "^5.5.3",
"got": "^12.0.1",
"iron-session": "^6.0.5",
"ky": "^0.28.7",
"mongodb": "^4.3.0",
"next": "12.2.1",
"react": "17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "17.0.2",
"react-loader-spinner": "^5.0.10",
"react-paginate": "^8.1.0",
"react-select": "^5.2.1",
"react-toastify": "^8.1.0",
"recharts": "^2.1.8",
"swr": "^1.1.2",
"zod": "^3.11.6"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@types/bad-words": "^3.0.1",
"@types/node": "17.0.2",
"@types/react": "17.0.37",
"@types/request-ip": "^0.0.37",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"autoprefixer": "^10.4.2",
"eslint": "8.5.0",
"eslint-config-next": "12.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prop-types": "^15.8.1",
"tailwindcss": "^3.0.13",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{ts,tsx,task1}": "bash -c 'pnpm run typecheck'",
"*.{ts,tsx,task2}": "bash -c 'pnpm run lint'",
"*.{ts,tsx,json,yaml}": "pnpm run format"
}
}