This repository was archived by the owner on Jan 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 KB
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
53
54
55
{
"name": "steemdunk-api",
"version": "0.0.1",
"description": "Steemdunk API server",
"main": "out/index.js",
"author": "Samuel Grenier <samrg472@gmail.com>",
"license": "MIT",
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"test": "cross-env NODE_ENV=TEST npx mocha -r ts-node/register test/index.ts",
"start": "node ./out/index.js"
},
"files": [
"tsconfig.json",
"gulpfile.js",
"src",
"out"
],
"dependencies": {
"@koa/cors": "^3.0.0",
"chalk": "^2.4.2",
"debug": "^4.1.0",
"http-status": "^1.3.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.13",
"steemdunk-common": "git+https://github.com/steemdunk/steemdunk-common.git#212f422",
"steeme": "git+https://github.com/steemdunk/steeme.git#b01ea6d",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/debug": "4.1.4",
"@types/http-status": "^0.2.30",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.0.40",
"@types/koa__cors": "^2.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"del": "^4.1.1",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"mocha": "^6.1.4",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}