-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.67 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
{
"name": "multisig",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -f ./config/.env.dev next dev",
"sandbox": "env-cmd -f ./config/.env.sandbox next dev --port 4000",
"build": "next build",
"build:dev": "env-cmd -f ./config/.env.dev next build",
"build:mainnet": "env-cmd -f ./config/.env.mainnet next build",
"start:mainnet": "env-cmd -f ./config/.env.mainnet next dev",
"lint": "next lint",
"format": "prettier --write pages/ components/ context/ types/ versioned/ utils/ test/",
"prepare": "husky install",
"dev:test": "vitest",
"test": "vitest run",
"check": "tsc",
"get_tez": "npx @oxheadalpha/get-tez tz1Rwf9UAGpsNjE6tFGJpxPKRunteiQT7XZF --amount 20 --network ghostnet"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown pages/ components/ context/ types/ versioned/ utils/"
},
"dependencies": {
"@airgap/beacon-sdk": "^4.1.3-beta.1",
"@ariakit/react": "^0.1.8",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-select": "^1.2.0",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.3",
"@stablelib/blake2b": "^1.0.1",
"@taquito/beacon-wallet": "^17.2.0",
"@taquito/taquito": "^17.2.0",
"@taquito/tzip12": "^17.5.2",
"@taquito/tzip16": "^17.2.0",
"@taquito/utils": "^19.1.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/uuid": "^9.0.1",
"@wert-io/widget-initializer": "^4.0.1",
"assert-never": "^1.2.1",
"axios": "^1.6.5",
"bignumber.js": "^9.1.1",
"bs58check": "^3",
"chart.js": "^4.4.2",
"env-cmd": "^10.1.0",
"eslint": "8.28.0",
"eslint-config-next": "14.1.4",
"formik": "2.4.1",
"luxon": "^3.2.1",
"next": "14.1.4",
"node-fetch": "^2.7.0",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"tiny-emitter": "^2.1.0",
"typescript": "4.9.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@oxheadalpha/get-tez": "^1.0.7",
"@taquito/signer": "^17.5.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/luxon": "^3.2.0",
"@types/node-fetch": "^2.6.10",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^8.5.0",
"form-data": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"node-blob": "^0.0.2",
"pino-pretty": "^10.2.3",
"postcss": "^8.4.19",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.4",
"vite": "^5.0.10",
"vitest": "^1.0.4"
}
}