-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
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
{
"name": "src",
"version": "0.8.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore .",
"test": "jest --coverage",
"check-format": "prettier --ignore-path .gitignore --list-different \"**/*.+(js|ts|json)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"validate": "npm run test && npm run check-format && npm run lint",
"production": "next start -p 80"
},
"dependencies": {
"@cafeca/keccak": "^0.8.8",
"@cafeca/lunar": "^0.5.10",
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"apexcharts": "^3.37.1",
"bignumber.js": "^9.1.1",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"ethers": "^5.7.2",
"gray-matter": "^4.0.3",
"i18next": "^22.4.5",
"lightweight-charts": "^4.0.1",
"lottie-react": "^2.3.1",
"marked": "^5.0.5",
"next": "14.0.1",
"next-i18next": "^13.0.1",
"playwright": "^1.38.0",
"playwright-core": "^1.38.0",
"pusher-js": "^8.0.2",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
"react-i18next": "^12.1.1",
"react-icons": "^4.6.0",
"react-loading-skeleton": "^3.2.1",
"react-toastify": "^9.1.2",
"react-usestateref": "^1.0.8",
"rlp": "^3.0.0",
"sharp": "^0.32.6 ",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@ethersproject/providers": "^5.7.2",
"@playwright/test": "^1.38.0",
"@types/jest": "^29.5.5",
"@types/marked": "^5.0.0",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.7.0",
"husky": "^4.3.8",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.1.1",
"typescript": "4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
}
}