-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
88 lines (88 loc) · 2.47 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
{
"name": "agera",
"version": "0.1.0",
"private": true,
"author": "Keith CY <[email protected]> (https://github.com/Keith-CY)",
"repository": {
"type": "git",
"url": "https://github.com/Keith-CY/agera"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"coverage": "nyc npm run test",
"format": "prettier -w --ignore-unknown pages/* pages/**/* components/* components/**/* styles/* utils/* cypress/**/*{.ts,.json}",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@date-io/dayjs": "2.16.0",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@fontsource/jetbrains-mono": "4.5.12",
"@fontsource/material-icons": "4.5.4",
"@fontsource/roboto": "4.5.8",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.11.7",
"@mui/x-date-pickers": "5.0.20",
"@nervosnetwork/ckb-sdk-utils": "0.103.1",
"bignumber.js": "9.1.1",
"dayjs": "1.11.7",
"dotbit": "0.4.14",
"ethers": "5.7.2",
"graphql": "16.6.0",
"graphql-request": "5.1.0",
"i18next": "22.4.9",
"material-ui-popup-state": "5.0.4",
"next": "12.3.4",
"next-i18next": "13.1.4",
"next-pwa": "5.5.4",
"phoenix": "1.6.15",
"qrcode": "1.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "12.2.2",
"react-query": "3.39.2",
"recharts": "2.3.2",
"wagmi": "0.10.6"
},
"devDependencies": {
"@cypress/code-coverage": "3.10.6",
"@svgr/webpack": "6.5.1",
"@types/node": "18.11.19",
"@types/phoenix": "1.5.4",
"@types/qrcode": "1.5.0",
"@types/react": "18.0.4",
"@types/react-dom": "18.0.11",
"@types/testing-library__jest-dom": "5.14.5",
"@types/testing-library__react": "10.2.0",
"autoprefixer": "10.4.14",
"babel-plugin-istanbul": "6.1.1",
"cypress": "12.5.1",
"eslint": "8.33.0",
"eslint-config-next": "12.3.4",
"husky": "8.0.3",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"lint-staged": "13.2.0",
"postcss": "8.4.21",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "15.1.0",
"postcss-nesting": "11.1.0",
"postcss-preset-env": "8.0.1",
"prettier": "2.8.4",
"sass": "1.58.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"lint-staged": {
"**/*": "npm run format"
},
"resolutions": {
"react-i18next": "12.2.2"
}
}