forked from nervosnetwork/ckb-explorer-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.91 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ckb-explorer-fronted",
"version": "1.0.0",
"private": true,
"dependencies": {
"@ant-design/icons": "4.8.0",
"@nervosnetwork/ckb-sdk-utils": "0.103.1",
"@sentry/react": "7.38.0",
"@sentry/tracing": "7.38.0",
"antd": "4.24.5",
"axios": "0.21.4",
"bignumber.js": "9.0.1",
"camelcase": "7.0.0",
"camelcase-keys": "7.0.0",
"classnames": "2.3.2",
"dayjs": "1.11.5",
"default-passive-events": "2.0.0",
"detect-gpu": "5.0.29",
"echarts": "4.8.0",
"gsap": "3.11.4",
"history": "5.0.0",
"i18next": "20.3.5",
"jsbi": "3.2.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "11.11.4",
"react-outside-click-handler": "^1.3.0",
"react-query": "3.39.1",
"react-resize-detector": "7.1.2",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "5.0.1",
"sass": "1.50.1",
"styled-components": "5.3.0",
"three": "0.149.0"
},
"devDependencies": {
"@sentry/webpack-plugin": "1.20.0",
"@testing-library/react": "12.1.5",
"@types/echarts": "4.9.9",
"@types/eslint": "7.28.0",
"@types/jest": "26.0.24",
"@types/node": "16.4.10",
"@types/react": "17.0.15",
"@types/react-dom": "17.0.9",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-router-dom": "5.1.8",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "5.1.11",
"@types/three": "0.149.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "5.48.1",
"create-react-app": "^4.0.3",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^7.0.1",
"jest-styled-components": "^7.0.5",
"mockdate": "^2.0.5",
"prettier": "2.3.2",
"react-app-rewired": "2.2.1",
"react-test-renderer": "^17.0.2",
"rxjs": "7.8.1",
"stylelint": "^15.10.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"timezone-mock": "^1.1.4",
"ts-jest": "27.0.4",
"typescript": "4.9.4"
},
"scripts": {
"start": "react-app-rewired start",
"lint": "eslint src/**/*.{ts,tsx} --fix",
"lint:css": "stylelint src/**/*.tsx",
"build": "react-app-rewired build",
"test": "react-app-rewired test --watchAll=false",
"eject": "react-app-rewired eject",
"husky:init": "husky install"
},
"jest": {
"displayName": "Unit Test"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "^18.13.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}