-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "tezos-faucet",
"version": "2.0.0",
"description": "Tezos Faucet Frontend",
"license": "MIT",
"private": true,
"dependencies": {
"@airgap/beacon-sdk": "^4.0.12",
"@taquito/beacon-wallet": "^17.4.0",
"@taquito/signer": "^17.4.0",
"@taquito/taquito": "^17.4.0",
"axios": "^1.6.2",
"bootstrap": "^5.3.2",
"html-react-parser": "^5.0.7",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"serve": "^14.2.1"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/node": "^20.10.4",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@types/react-google-recaptcha": "^2.1.8",
"@vitejs/plugin-react": "^4.2.1",
"chalk": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"vite": "^4.4.9",
"vite-plugin-terminal": "^1.1.0"
},
"scripts": {
"dev": "vite",
"build": "npm run check-config && tsc --noEmit && vite build",
"preview": "vite preview",
"check-config": "node ./scripts/configChecker.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}