This repository has been archived by the owner on Sep 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.52 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": "web-wallet",
"version": "v0.0.4",
"private": true,
"author": "COZ, Inc.",
"scripts": {
"start": "cross-env GENERATE_SOURCEMAP=false react-app-rewired start",
"build": "cross-env GENERATE_SOURCEMAP=false react-app-rewired build",
"deploy": "aws s3 sync ./build s3://web-wallet-coz --acl public-read",
"deploy:develop": "aws s3 sync ./build s3://web-wallet-coz-dev --acl public-read",
"lint": "eslint ./src/**/*.ts*",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfZion/web-wallet.git"
},
"bugs": {
"url": "https://github.com/CityOfZion/web-wallet/issues"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.1",
"@cityofzion/neon-dappkit": "^0.0.5",
"@cityofzion/neon-js": "^5.5.1",
"@cityofzion/wallet-connect-sdk-wallet-react": "^2.5.4",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@json-rpc-tools/utils": "^1.7.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-qr-reader": "^2.1.3",
"@types/styled-components": "^5.1.2",
"@walletconnect/sign-client": "2.4.6",
"axios": "^0.21.1",
"crypto-browserify": "^3.12.0",
"framer-motion": "^4.1.16",
"keyvaluestorage": "^0.7.1",
"prop-types": "^15.7.2",
"querystring-es3": "^0.2.1",
"randombytes": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-qr-reader": "^2.2.1",
"react-scripts": "^5.0.1",
"stream-browserify": "^3.0.0",
"styled-components": "^5.2.0",
"typescript": "^4.2.3"
},
"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"
]
},
"devDependencies": {
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.1",
"react-app-rewired": "^2.2.1"
}
}