-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
99 lines (99 loc) · 3.33 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
{
"name": "cctp-sample-app",
"version": "0.1.0",
"description": "CCTP Sample App",
"author": "Circle",
"license": "MIT",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:stats": "yarn build --stats",
"analyze": "webpack-bundle-analyzer build/bundle-stats.json",
"typechain": "typechain --target=ethers-v5 --out-dir ./src/typechain ./src/abis/*.json",
"lint": "eslint --ext .js,.ts,.tsx --fix .",
"format": "prettier --ignore-path .prettierignore --write .",
"fix-all": "npm-run-all --parallel lint format",
"check-lint": "eslint --ext .js,.ts,.tsx .",
"check-format": "prettier --ignore-path .prettierignore --check .",
"check-type": "tsc --project tsconfig.json --pretty --noEmit",
"check-all": "npm-run-all --parallel check-lint check-format check-type",
"prepare": "husky install .husky",
"test": "react-scripts test",
"test:unit:coverage": "yarn test --watchAll=false --coverage",
"test:unit:ci": "yarn test:unit:coverage --reporters=default --reporters=jest-junit",
"eject": "react-scripts eject"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.98",
"@mui/material": "^5.10.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/types": "^6.0.7",
"axios": "^0.27.2",
"ethers": "^5.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@typechain/ethers-v5": "^10.1.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"classnames": "^2.3.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-tailwindcss": "^3.6.0",
"eslint-plugin-testing-library": "^5.6.0",
"husky": "^8.0.1",
"jest-junit": "^14.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"react-scripts": "^5.0.1",
"tailwindcss": "^3.1.8",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4",
"webpack-bundle-analyzer": "^4.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}