forked from ritik4ever/stellar-goal-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.28 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
{
"name": "stellar-goal-vault",
"version": "1.0.0",
"description": "Crowdfunding and goal-vault MVP built on Stellar",
"private": true,
"scripts": {
"dev": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"install:all": "cd backend && npm install && cd ../frontend && npm install",
"build": "cd backend && npm run build && cd ../frontend && npm run build",
"test:visual": "npx playwright test --config=playwright.visual.config.ts",
"format": "npx prettier --write \"**/*.{ts,tsx,json}\"",
"format:check": "npx prettier --check \"**/*.{ts,tsx,json}\"",
"deploy:contract": "./scripts/deploy.sh",
"gen:bindings": "cd backend && npx ts-node-dev --respawn --transpile-only ../scripts/gen-bindings.ts",
"gen:bindings:mainnet": "NETWORK=mainnet npm run gen:bindings"
},
"license": "MIT",
"dependencies": {
"axios": "^1.13.6",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"entities": "^8.0.0",
"express": "^5.2.1",
"typescript": "^6.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"playwright": "^1.59.1",
"prettier": "^3.0.0"
}
}