-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "dhx-deployer",
"version": "0.0.1",
"description": "",
"main": "build/src/server.js",
"scripts": {
"test": "yarn mocha -r ts-node/register tests/**/*.ts",
"spec": "yarn run tsoa spec",
"routes": "yarn run tsoa routes",
"build": "yarn run routes && yarn run spec && yarn run tsc",
"serve": "node build/src/server.js"
},
"author": "MXC Foundation",
"license": "ISC",
"dependencies": {
"@ethereumjs/common": "^2.0.0-rc.1",
"@ethereumjs/tx": "^3.0.0-beta.2",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/express": "^4.17.9",
"@types/http-status": "^1.1.2",
"@types/mocha": "^8.0.4",
"@types/mongodb": "^3.5.34",
"@types/node": "^14.14.8",
"@types/swagger-ui-express": "^4.1.2",
"@types/web3": "^1.2.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.5.0",
"mocha": "^8.2.1",
"mongodb": "^3.6.3",
"swagger-ui-express": "^4.1.5",
"ts-node": "^9.0.0",
"tsoa": "^3.4.0",
"web3": "^1.3.0"
},
"devDependencies": {
"prettier": "2.1.2",
"typescript": "^4.0.5"
}
}