-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.31 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "blockchain-voting-backend",
"version": "1.0.0",
"description": "The API for the voting tool",
"main": "server.js",
"dependencies": {
"@sentry/node": "^5.5.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-winston": "^2.6.0",
"mongodb": "^3.1.1",
"web3": "^1.0.0-beta.34",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/mongodb": "^3.1.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"node-loader": "^0.6.0",
"nyc": "^12.0.2",
"supertest": "^3.1.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"typescript": "^3.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"test": "NODE_ENV=test mocha -r ts-node/register src/test/*.ts",
"start": "tsc -p . && node --inspect build/main.js",
"build": "tsc",
"bundle": "webpack --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slockit/blockchain-voting-backend.git"
},
"author": "Jonas Bentke",
"license": "ISC",
"bugs": {
"url": "https://github.com/slockit/blockchain-voting-backend/issues"
},
"homepage": "https://github.com/slockit/blockchain-voting-backend#readme"
}