-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 886 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 886 Bytes
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
{
"private": true,
"version": "1.0.0",
"repository": "git@github.com:ArVerify/arverify-node.git",
"author": "John Letey <johnletey@gmail.com>",
"license": "MIT",
"scripts": {
"start": "tsc index.ts --esModuleInterop true --resolveJsonModule true --outDir dist && node dist/index.js",
"build": "tsc index.ts --esModuleInterop true --resolveJsonModule true --outDir dist",
"start:docker": "node dist/index.js",
"fmt": "prettier --write ."
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^9.4.0",
"arverify": "^0.0.9",
"arweave": "^1.9.1",
"dotenv": "^8.2.0",
"googleapis": "^62.0.0",
"koa": "^2.13.0",
"smartweave": "^0.4.10"
},
"devDependencies": {
"@types/koa": "^2.11.6",
"@types/koa__cors": "^3.0.2",
"@types/koa__router": "^8.0.3",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}