-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.26 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.26 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "saddle-frontend",
"description": "The frontend for saddle.finance 🤠",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.4.1",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@metamask/jazzicon": "^2.0.0",
"@reduxjs/toolkit": "^1.4.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.7",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.6",
"@web3-react/core": "^6.1.1",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "^6.1.3",
"@web3-react/types": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.1.9",
"@web3-react/walletlink-connector": "^6.1.9",
"async-retry": "^1.3.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"ethcall": "^3.2.0",
"ethers": "^5.1.0",
"framer-motion": "^4.0.3",
"history": "^5.0.0",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-fetch-backend": "^3.0.0",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-device-detect": "^1.14.0",
"react-dom": "^16.14.0",
"react-i18next": "^11.8.10",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"redux": "^4.0.5",
"redux-localstorage-simple": "^2.4.0",
"typescript": "^4.2.4",
"web-vitals": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@chakra-ui/cli": "^1.2.1",
"@cypress/code-coverage": "^3.9.4",
"@cypress/instrument-cra": "^1.4.0",
"@ethersproject/experimental": "^5.0.9",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.0.28",
"@storybook/node-logger": "^6.1.21",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.0.28",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.3",
"@typechain/ethers-v5": "^6.0.5",
"@types/async-retry": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"cypress": "^6.8.0",
"cypress-react-selector": "^2.3.6",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.1.2",
"react-is": "^17.0.1",
"redux-devtools-extension": "^2.13.8",
"sass": "^1.32.5",
"start-server-and-test": "^1.12.1",
"typechain": "^4.0.3",
"typescript-plugin-css-modules": "^3.2.0"
},
"scripts": {
"lint": "eslint --max-warnings=0 --ext ts,tsx src/ && prettier --list-different 'src/**/*.{ts,tsx,scss}'",
"lint:fix": "eslint --max-warnings=0 --ext ts,tsx --fix src/ && prettier --write 'src/**/*.{ts,tsx,scss}'",
"start": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6008 -s public --no-dll",
"build-storybook": "build-storybook -s public --no-dll",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:coverage": "start-test 3000 'cypress run --config video=false'",
"postinstall": "typechain --target ethers-v5 'src/constants/abis/*.json' && npm run gen:theme-typings",
"gen:theme-typings": "chakra-cli tokens src/theme/index.ts",
"prepare": "husky install"
},
"homepage": ".",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/thesis/saddle-frontend.git"
},
"keywords": [
"cryptocurrency",
"interoperability",
"bitcoin",
"ethereum",
"tbtc",
"defi"
],
"author": "Satoshi Nakamoto 🤪",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
}
}