-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 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
47
48
49
50
51
52
53
54
{
"name": "uplift",
"version": "1.0.0",
"description": "Pay-to-vote compassion marketplace on Algorand blockchain",
"main": "demo/index.html",
"homepage": "https://github.com/gulkily/uplift",
"repository": {
"type": "git",
"url": "https://github.com/gulkily/uplift.git"
},
"scripts": {
"dev": "cd demo && python3 -m http.server 8080",
"start": "cd demo && python3 -m http.server 8080",
"serve": "cd demo && npx http-server . -p 8080 -c-1",
"build": "echo 'No build process needed for demo - static HTML/CSS/JS'",
"test": "echo 'Demo testing: Open demo/index.html and verify all features work'",
"test:contracts": "goal clerk compile contracts/UpliftVoting.teal && goal clerk compile contracts/clear.teal",
"deploy:testnet": "bash scripts/deploy-testnet.sh",
"deploy:netlify": "netlify deploy --prod --dir=demo",
"deploy:vercel": "cd demo && vercel --prod",
"lint:teal": "goal clerk compile contracts/UpliftVoting.teal --outdir /tmp/",
"validate": "npm run test:contracts && npm run test"
},
"keywords": [
"algorand",
"blockchain",
"compassion",
"marketplace",
"pay-to-vote",
"wisdom",
"empathy",
"social-impact",
"mental-health",
"community"
],
"author": "Uplift Team",
"license": "MIT",
"dependencies": {
"algosdk": "^2.7.0"
},
"devDependencies": {
"http-server": "^14.1.1",
"netlify-cli": "^17.10.0",
"vercel": "^32.7.2"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}