-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "@koralabs/handles-decentralized-minting",
"version": "0.1.16",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rm -rf lib/ && tsc",
"lint": "concurrently \"cd smart-contract && aiken fmt --check\" \"npx eslint './src/**/*.{ts,mjs}' --max-warnings=0\"",
"test": "echo \"No Tests\"",
"start:preview": "cd scripts/ && NODE_ENV=preview tsx ./run/index.ts",
"start:preprod": "cd scripts/ && NODE_ENV=preprod tsx ./run/index.ts"
},
"dependencies": {
"@aiken-lang/merkle-patricia-forestry": "^1.2.0",
"@blockfrost/blockfrost-js": "^5.7.0",
"@helios-lang/codec-utils": "^0.3.4",
"@helios-lang/compiler": "^0.17.11",
"@helios-lang/crypto": "^0.2.3",
"@helios-lang/ledger": "^0.6.16",
"@helios-lang/tx-utils": "^0.4.8",
"@helios-lang/uplc": "^0.7.9",
"@koralabs/kora-labs-common": "^6.0.3",
"ansi-colors": "^4.1.3",
"cli-progress": "^3.12.0",
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.5",
"flatted": "^3.3.2",
"prompts": "^2.4.2",
"ts-res": "^1.3.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.10.6",
"@types/prompts": "^2.4.9",
"concurrently": "^9.1.2",
"eslint": "^9.18.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
}
}