forked from arconnectio/ArConnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.96 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
100
101
{
"scripts": {
"start": "cross-env NODE_ENV=development node esbuild.js",
"build": "cross-env NODE_ENV=production node esbuild.js",
"build:chrome": "cross-env NODE_ENV=production node esbuild.js",
"build:firefox": "cross-env NODE_ENV=production BUILD_TARGET=FIREFOX node esbuild.js",
"test": "jest",
"zip": "rm -f arconnect.zip && cd public && zip -r ../arconnect.zip *",
"type-check": "tsc --noEmit",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ."
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"@geist-ui/react": "^2.2.0",
"@primer/octicons-react": "^16.0.0",
"@verto/js": "^0.0.0-alpha.19",
"@verto/lib": "^0.10.4",
"ar-gql": "^0.0.6",
"arbundles": "^0.6.14",
"arverify": "^0.0.11",
"arweave": "^1.10.18",
"axios": "^0.23.0",
"bcryptjs": "^2.4.3",
"bip39-web-crypto": "^4.0.1",
"buffer": "^6.0.3",
"chart.js": "^2.9.4",
"copy-to-clipboard": "^3.3.1",
"crypto-es": "^1.2.7",
"dayjs": "^1.10.4",
"exchange-rates-api": "^1.0.2",
"extensionizer": "^1.0.1",
"framer-motion": "^3.10.6",
"human-crypto-keys": "^0.1.4",
"mime-types": "^2.1.30",
"nanoid": "^4.0.0",
"pretty-bytes": "^5.6.0",
"react": "^17.0.1",
"react-chartjs-2": "^2.11.1",
"react-chrome-extension-router": "^1.2.0",
"react-dom": "^17.0.1",
"react-qr-svg": "^2.3.0",
"react-redux": "^7.2.2",
"react-scripts": "^4.0.2",
"redstone-api": "^0.4.11",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-persist-webextension-storage": "^1.0.2",
"smartweave": "^0.4.45",
"use-color-scheme": "^1.1.1",
"uuid": "^8.3.2",
"verto-cache-interface": "^1.2.6",
"webextension-polyfill-ts": "^0.26.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/exchange-rates-api": "^1.0.0",
"@types/human-crypto-keys": "^0.1.0",
"@types/jest": "^27.0.2",
"@types/jwk-to-pem": "^2.0.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^12.0.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.16",
"@types/redux": "^3.6.0",
"@types/redux-persist-webextension-storage": "^1.0.0",
"@types/use-color-scheme": "^1.1.0",
"@types/uuid": "^8.3.0",
"autoprefixer": "^10.2.4",
"cross-env": "^7.0.3",
"esbuild": "^0.13.8",
"esbuild-plugin-postcss2": "^0.1.0",
"jest": "^27.0.6",
"postcss": "^8.3.6",
"prettier": "^2.2.1",
"sass": "^1.32.5",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "prettier --write . && git add -A"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}