-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.61 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
48
49
50
51
52
53
54
55
{
"name": "hackernews_collections",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf build",
"build": "tsc",
"run": "node -r dotenv/config ./build/index.js dotenv_config_path=./config.env",
"start": "npm-run-all clean build run",
"test": "env DOTENV_CONFIG_PATH=./config.env mocha -r dotenv/config --config .mocharc.integration.json test/integration",
"unit-test": "env DOTENV_CONFIG_PATH=./config.env mocha -r dotenv/config --config .mocharc.unit.json test/unit"
},
"keywords": [],
"author": "Marek Lavrincik",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^7.12.0",
"@koa/cors": "^3.1.0",
"@koa/router": "^10.0.0",
"dotenv": "^8.2.0",
"firebase": "^8.3.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.13.1",
"@types/koa__cors": "^3.0.2",
"@types/koa__router": "^8.0.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.34",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.3.4",
"got": "^11.8.2",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}