-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
56
57
58
59
{
"name": "boilerplate",
"version": "2.0.0",
"description": "TypeScript powered boilerplate for node.js based microservice",
"main": "index.js",
"repository": "[email protected]:plyo/boilerplate.git",
"author": "Andrew Balakirev <[email protected]>, Alexey Ladeyshchikov <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"config": "^3.3.6",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"pino": "^6.11.3",
"pino-elasticsearch": "^6.1.0",
"pino-http": "^5.5.0",
"pino-pretty": "^5.1.0",
"superagent": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-private-methods": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.1",
"@plyo/dev-tools": "1.0.4",
"@types/busboy": "^0.2.4",
"@types/config": "^0.0.39",
"@types/cookie-parser": "^1.4.2",
"@types/http-proxy": "^1.17.7",
"@types/ioredis": "^4.26.5",
"@types/pg": "^8.6.1",
"@types/pino": "^6.3.9",
"@types/pino-http": "^5.4.2",
"chokidar": "^3.5.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-tsc": "^2.0.0",
"ts-node": "^10.2.0",
"typescript": "^4.0.2"
},
"scripts": {
"build": "npx tsc -p ./tsconfig.json --pretty",
"start": "nodemon --exec ts-node --watch src src/server.ts",
"lint": "eslint .",
"lint-staged": "lint --staged",
"precommit": "lint --staged",
"lint-ts": "eslint '*/**/*.ts' --fix",
"ts": "npx tsc -p ./tsconfig.json --noEmit --pretty"
}
}