-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.41 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
49
50
51
52
{
"name": "dappnode-cert-api",
"version": "1.0.0",
"description": "dAppNode SSL certificate API",
"repository": {
"type": "git",
"url": "git://github.com/Shard-Labs/dappnode-cert-api.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && cp -rf package.json dist/package.json",
"start": "ts-node src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts",
"test": "mocha -r ts-node/register test/**/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/express": "^4.17.8",
"@types/express-rate-limit": "^5.1.0",
"@types/mocha": "^8.0.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.2.0",
"csr-gen": "^0.2.1",
"eslint": "^7.19.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-node": "^9.0.0",
"tsc": "^1.20150623.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/dotenv-defaults": "^2.0.0",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.4",
"@types/rimraf": "^3.0.0",
"dotenv-defaults": "^2.0.1",
"ethers": "^5.0.24",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-rate-limit": "^5.1.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2"
}
}