-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 KB
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
{
"name": "my-monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build:rust": "cd rust/contracts && stellar contract build",
"test:rust": "cd rust/contracts && cargo test",
"clean:rust": "cd rust/contracts && cargo clean",
"deploy:local": "cd rust/contracts && stellar contract deploy --network standalone",
"deploy:testnet": "cd rust/contracts && stellar contract deploy --network testnet",
"deploy:futurenet": "cd rust/contracts && stellar contract deploy --network futurenet",
"soroban:install": "curl -sSL https://soroban.stellar.org/install | sh"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.68.0",
"prettier": "^3.1.0",
"turbo": "^2.4.4"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@next/third-parties": "^15.2.3",
"@ngneat/elf": "^2.5.1",
"@noble/curves": "^1.8.1",
"@stellar/design-system": "^3.1.0",
"@stellar/freighter-api": "^4.1.0",
"@stellar/stellar-sdk": "^12.3.0",
"@tanstack/react-query": "^5.69.0",
"immer": "^10.1.1",
"zustand": "^5.0.3",
"zustand-persist": "^0.4.0",
"zustand-querystring": "^0.2.0"
}
}