-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
86 lines (86 loc) · 2.63 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
{
"name": "pangolin.exchange",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives",
"lint:fix": "eslint src --ext ts,tsx --report-unused-disable-directives --fix",
"preview": "vite preview",
"prepare": "husky install",
"type-check": "tsc --noEmit",
"pre-commit-hook": "lint-staged"
},
"dependencies": {
"@pangolindex/components": "7.3.5",
"@pangolindex/governance": "^1.2.0",
"@pangolindex/sdk": "5.3.2",
"@reduxjs/toolkit": "1.8.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@web3-react/core": "6.0.9",
"@web3-react/walletconnect-connector": "6.2.13",
"@web3-react/walletlink-connector": "6.2.11",
"axios": "1.1.3",
"jest": "26.6.0",
"mixpanel-browser": "2.45.0",
"qs": "6.11.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-query": "3.39.2",
"react-redux": "7.2.6",
"react-router-dom": "6.8.1",
"react-scripts": "4.0.3",
"react-spring": "8.0.27",
"react-use": "15.3.8",
"redux-localstorage-simple": "2.4.1",
"styled-components": "5.3.1",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@types/jest": "27.5.2",
"@types/mixpanel-browser": "2.38.0",
"@types/node": "16.11.58",
"@types/qs": "6.9.7",
"@types/react": "16.14.24",
"@types/react-dom": "16.9.14",
"@types/react-redux": "7.1.23",
"@types/styled-components": "5.1.24",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"babel-jest": "26.6.3",
"babel-plugin-styled-components": "2.0.6",
"eslint": "^8.38.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"npm-force-resolutions": "0.0.10",
"patch-package": "6.4.7",
"prettier": "1.19.1",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-svgr": "3.2.0",
"vite-tsconfig-paths": "4.2.0"
},
"lint-staged": {
"*/!(node_modules|dist)|**/**/*.{jsx,js,ts,tsx}": [
"bash -c 'npm run type-check'",
"npm run lint",
"git add ."
]
},
"resolutions": {
"@types/react": "16.14.24",
"styled-components": "5.3.1"
}
}