-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
51 lines (51 loc) · 2.09 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
{
"name": "turbo",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=21"
},
"module": "index.ts",
"type": "module",
"scripts": {
"test": "dotenv -- turbo run test --filter='./packages/core'",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"build": "dotenv -- turbo run build",
"build:packages": "dotenv -- turbo run build --filter='./packages/*'",
"changeset:prepublish": "pnpm version:update && pnpm build:packages && bun .scripts/formatPackageJson.ts && bun .scripts/generateProxyPackages.ts",
"changeset:publish": "pnpm changeset:prepublish && changeset publish",
"changeset:version": "changeset version && pnpm version:update",
"dev": "dotenv -- turbo run dev --parallel",
"typecheck": "dotenv -- turbo run typecheck",
"lint": "dotenv -- turbo run lint",
"lint:fix": "dotenv -- turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"accounts:new": "dotenv -- turbo run accounts:new",
"accounts:deploy": "dotenv -- turbo run accounts:deploy",
"deploy:solis": "dotenv -- turbo run deploy:solis --log-prefix=none",
"deploy:solis:local": "dotenv -- turbo run deploy:solis:local --log-prefix=none",
"deploy:starknet": "dotenv -- turbo run deploy:starknet",
"deploy:starknet:local": "dotenv -- turbo run deploy:starknet:local --log-prefix=none",
"deploy:starknet:tokens": "dotenv -- turbo run deploy:starknet:tokens --log-prefix=none",
"version:update": "bun .scripts/updateVersion.ts",
"build:contracts": "cd contracts && scarb build && bun ../.scripts/exportABi.ts"
},
"dependencies": {
"@ark-project/eslint-config": "workspace:*",
"@ark-project/typescript-config": "workspace:*",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@changesets/cli": "^2.27.1",
"bun": "^1.0.26",
"bun-types": "^1.0.26",
"dotenv-cli": "^7.3.0",
"glob": "^10.3.10",
"prettier": "^3.1.0",
"starknet": "6.7.0",
"prettier-plugin-sort-imports": "^1.8.1",
"turbo": "^1.13.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}