-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.06 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
{
"name": "@settlemint/asset-tokenization-kit",
"description": "SettleMint Kit - Asset Tokenization",
"version": "0.3.15",
"private": false,
"license": "FSL-1.1-MIT",
"author": {
"name": "SettleMint",
"email": "[email protected]",
"url": "https://settlemint.com"
},
"homepage": "https://github.com/settlemint/asset-tokenization-kit/blob/main/apps/dapp/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/settlemint/asset-tokenization-kit.git"
},
"bugs": {
"url": "https://github.com/settlemint/asset-tokenization-kit/issues",
"email": "[email protected]"
},
"files": [
".github",
".vscode",
"kit",
"src",
".gitignore",
"biome.json",
"bunfig.toml",
"lefthook.yml",
"LICENSE",
"logo.svg",
"package.json",
"README.md",
"turbo.json"
],
"scripts": {
"clean": "git clean -fdX -e '.env' -e '.env.*' -e '!.env' -e '!.env.*' && find . -type f \\( -name 'pnpm-lock.yaml' -o -name 'package-lock.json' -o -name 'yarn.lock' -o -name 'bun.lockb' -o -name 'bun.lock' \\) -exec rm -f {} + && bun install",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"test": "turbo test",
"codegen": "turbo codegen",
"deploy:local": "turbo deploy:local",
"deploy:remote": "turbo deploy:remote",
"test:e2e": "bun run --cwd kit/e2e test:e2e",
"test:e2e:ui": "bun run --cwd kit/e2e test:e2e:ui"
},
"dependencies": {},
"devDependencies": {
"@settlemint/sdk-cli": "2.0.0",
"prettier": "3.5.3",
"turbo": "2.4.4",
"typescript": "5.8.2"
},
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"better-sqlite3",
"esbuild",
"keccak",
"lefthook",
"prisma",
"protobufjs",
"secp256k1"
],
"workspaces": [
"kit/*"
],
"packageManager": "[email protected]",
"overrides": {
"react-is": "19.1.0",
"graphql": "16.10.0",
"elliptic": "6.6.1",
"ws": "8.18.1",
"adm-zip": "0.5.16",
"undici": "7.6.0",
"prettier": "3.5.3"
}
}