-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1013 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
35
36
37
{
"name": "dravatar-server",
"version": "1.0.0",
"description": "Avatar for ethereum account",
"main": "server.js",
"scripts": {
"start": "node ./src/index.js",
"commitmsg": "commitlint -e $GIT_PARAMS",
"commit": "commit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Frank Wei <[email protected]>",
"license": "MIT",
"dependencies": {
"async-busboy": "^0.6.2",
"aws-sdk": "^2.224.1",
"eth-sig-util": "^1.4.2",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.5",
"sharp": "^0.20.1",
"superagent": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@types/es6-promise": "^3.3.0",
"@types/koa": "^2.0.45",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-router": "^7.0.27",
"@types/koa2-cors": "^2.0.1",
"@types/node": "^9.6.5",
"@types/sharp": "^0.17.8",
"husky": "^0.14.3"
}
}