-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "@azns/domain-giveaway",
"version": "0.0.0",
"author": "AZERO.ID <hello@azero.id> (https://azero.id)",
"type": "module",
"engines": {
"node": ">=18 <=20",
"pnpm": "8"
},
"scripts": {
"test": "bash test-all.sh",
"build": "bash build-all.sh",
"node": "substrate-contracts-node --dev --base-path ./.node-data",
"script": "f() { tsx ./scripts/$1; }; f \"$@\"",
"deploy": "pnpm run script deploy",
"contracts-ui": "open https://contracts-ui.substrate.io/?rpc=ws://127.0.0.1:9944",
"explorer-ui": "open https://polkadot.js.org/apps/#/explorer?rpc=ws://127.0.0.1:9944",
"type-check": "tsc --pretty --noEmit",
"lint": "prettier . --check && eslint",
"lint:fix": "prettier . --write && eslint --fix",
"lint:format": "prettier . --write",
"eslint": "eslint . --ext .js,.ts",
"supabase:gen-types": "supabase gen types typescript --project-id \"rbjaotkundbeckoqbuzm\" > scripts/types/supabase/Database.types.ts",
"supabase:deploy": "pnpm supabase functions deploy giveaway-generate-proof --project-ref \"rbjaotkundbeckoqbuzm\""
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@polkadot/api": "^10.11.1",
"@polkadot/api-contract": "^10.11.1",
"@polkadot/keyring": "^12.6.1",
"@polkadot/types": "^10.11.1",
"@polkadot/util": "^12.6.1",
"@polkadot/util-crypto": "^12.6.1",
"@scio-labs/use-inkathon": "0.6.0",
"@supabase/supabase-js": "^2.38.5",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cli-progress": "^3.12.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"js-sha3": "^0.9.2",
"merkletreejs": "^0.3.11",
"prettier": "^3.1.0",
"supabase": "^1.113.3",
"tsx": "^4.5.0",
"typescript": "^5.3.2",
"uuid": "^9.0.1"
}
}