-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "naivecoin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node entry.ts",
"start": "node entry.ts",
"prestart": "npm run compile",
"compile": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"crypto-js": "^3.1.6",
"elliptic": "^6.4.0",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.0.0",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.5",
"lodash": "^4.17.4",
"ts-node": "^6.0.5",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.8.3",
"ws": "^3.0.0"
},
"engines": {
"node": ">=8.5.0"
},
"devDependencies": {
"@types/crypto-js": "^3.1.33",
"@types/koa": "^2.0.45",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.0",
"@types/koa-router": "^7.0.28",
"@types/koa2-cors": "^2.0.1",
"@types/lodash": "^4.14.85",
"@types/node": "^8.0.9",
"@types/ws": "^5.1.1",
"tslint": "^5.5.0",
"tslint-config-standard": "^7.0.0"
}
}