-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 990 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
30
31
32
33
34
{
"name": "api-trust-vote",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:didoshotev/Trust-Vote-API.git",
"author": "didoshotev <didoshotev@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"js-sha3": "^0.8.0",
"jsonwebtoken": "^9.0.0",
"keccak256": "^1.0.6",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"secp256k1": "^5.0.0",
"sequelize": "^6.31.1"
},
"devDependencies": {
"nodemon": "^2.0.22",
"prettier": "2.8.7"
},
"scripts": {
"format": "yarn --cwd src prettier --write .",
"start": "nodemon --inspect=0.0.0.0:9229 --watch --legacy-watch src src/index.js",
"start:watch": "nodemon -r dotenv/config src/index.js",
"docker-start:dev": "docker-compose down || true && docker-compose up --build",
"stop": "docker-compose down"
}
}