-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 803 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 803 Bytes
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
{
"name": "stellar-goal-vault",
"version": "1.0.0",
"description": "Crowdfunding and goal-vault MVP built on Stellar",
"private": true,
"scripts": {
"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",
"deploy:contract": "./scripts/deploy.sh"
},
"license": "MIT",
"dependencies": {
"axios": "^1.13.6",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"typescript": "^6.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0"
}
}