-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.29 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
{
"name": "crypto-exchange-directory",
"version": "1.0.0",
"description": "Crypto Exchange Directory",
"author": "Alexey Sobolev <[email protected]> (https://lexer.dev/)",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"start": "vite",
"test": "cypress run",
"cy:open": "cypress open",
"deploy": "tsc && vite build && firebase deploy",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"lint:eslint": "eslint './**/*.tsx' --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/plots": "^1.2.2",
"antd": "^4.23.5",
"axios": "^1.1.2",
"js-search": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-router-dom": "^6.4.2",
"swr": "^1.3.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/js-search": "^1.4.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-react": "^2.1.0",
"cypress": "^10.9.0",
"d3-color": "^3.1.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.9",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"sass-mq": "^6.0.0",
"typescript": "^4.8.4",
"vite": "^3.1.7",
"vite-tsconfig-paths": "^3.5.1",
"webpack": "^5.74.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"d3-color": "^3.1.0",
"d3-interpolate": "^3.0.1"
}
}