-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.53 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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engines": {
"node": ">= 10.13 <11"
},
"devDependencies": {
"@types/elasticsearch": "^5.0.35",
"@types/jest": "^24.0.15",
"@types/koa": "^2.0.49",
"@types/koa-router": "^7.0.42",
"@types/node": "^10.14.10",
"@types/ramda": "^0.26.16",
"jest": "^25.2.6",
"nodemon": "^2.0.2",
"prettier": "1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^25.3.0",
"ts-node": "^8.3.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.14.0",
"typescript": "~3.5.0"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npm run clean & tsc -p tsconfig.release.json",
"build:watch": "npm run clean & tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage --passWithNoTests",
"test:watch": "jest --watch",
"start:watch": "nodemon"
},
"author": "Jakub Synowiec <github@jakubsynowiec.info>",
"license": "Apache-2.0",
"dependencies": {
"@koa/cors": "^3.0.0",
"@melonade/melonade-declaration": "^0.17.0",
"bodybuilder": "^2.2.20",
"dotenv": "^8.0.0",
"elasticsearch": "^16.5.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"node-rdkafka": "^2.7.4",
"ramda": "^0.26.1",
"tslib": "~1.10.0"
}
}