-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
95 lines (95 loc) · 2.88 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
{
"name": "explorer",
"version": "0.1.0",
"protocol": "beta-5",
"defaultProtocol": "beta-4",
"private": true,
"engines": {
"npm": ">=8.0.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --check src",
"format:fix": "prettier --write src",
"build-operations": "graphql-codegen && prettier --write src/api/__generated__/types.ts",
"update-schema": "sh ./scripts/update-schema.sh",
"postinstall": "npm run build-operations",
"cypress:open": "cypress open"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/client": "^3.4.13",
"@craco/craco": "7.0.0-alpha.3",
"@ethersproject/bignumber": "^5.5.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.20.37",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.15",
"bignumber.js": "^9.0.1",
"copy-webpack-plugin": "^11.0.0",
"create-file-webpack": "^1.0.2",
"dayjs": "^1.11.7",
"dotenv": "^16.3.1",
"fuels": "^0.71.0",
"graphql": "^15.7.2",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"styled-components": "^5.3.3",
"tai64": "^1.0.0",
"typescript": "^4.4.4",
"url-join": "^5.0.0",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@ethersproject/bytes": "^5.6.0",
"@ethersproject/units": "^5.6.0",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/near-operation-file-preset": "^2.2.6",
"@graphql-codegen/typescript": "^2.4.5",
"@graphql-codegen/typescript-operations": "^2.3.2",
"@graphql-codegen/typescript-react-apollo": "^3.2.8",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^17.0.34",
"bundle-stats-webpack-plugin": "^3.3.2",
"cypress": "^8.7.0",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"get-graphql-schema": "^2.1.2",
"graphqurl": "^1.0.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "2.5.1",
"semantic-release": "^18.0.0",
"webpack-bundle-analyzer": "^4.5.0"
}
}