-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 922 Bytes
/
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
{
"name": "voting-app",
"version": "1.0.0",
"description": "Building a backend system for a decentralized voting application. It will interact with the Stacks blockchain through a Clarity smart contract for voting, while the backend, built with Node.js, will handle authentication and API requests.",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@stacks/auth": "^6.16.1",
"@stacks/blockchain-api-client": "^8.0.0",
"@stacks/network": "^6.16.0",
"@stacks/transactions": "^6.16.1",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"nodemon": "^3.1.5"
}
}