-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1017 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
{
"name": "curves-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "npm run build && node --nouse-idle-notification server.js",
"build": "tsc -p .",
"dev": "ts-node server.ts",
"docs": "typedoc --includeDeclarations --readme none --name \"Curves server\" --out docs server.ts typings/index.d.ts",
"docsdeploy": "node docsdeploy.js",
"postinstall": "typings install"
},
"license": "MIT",
"dependencies": {
"koa": "^2.0.0",
"koa-bodyparser": "^2.2.0",
"koa-router": "^7.0.1",
"kcors": "leecade/cors#5f3079e505b33375b30c5a10a9c4faa01aac371e",
"lokijs": "^1.4.1",
"ts-eventemitter": "^0.1.0",
"ws": "^1.0.0"
},
"optionalDependencies": {
"bufferutil": "^1.2.1",
"utf-8-validate": "^1.2.1"
},
"devDependencies": {
"ts-node": "^1.2.2",
"tslint": "^3.14.0",
"typescript": "^2.0.0",
"typings": "^1.3.2",
"typedoc": "https://github.com/zakhenry/typedoc/releases/download/v0.4.6/typedoc-0.4.6.tgz"
}
}