-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "kicker-automatization",
"version": "0.1.0",
"description": "Kicker automatization",
"main": "app.js",
"author": "Pom4H",
"license": "MIT",
"private": true,
"scripts": {
"start": "bin/environment node dist/app.js",
"start-dev": "KICKER_ENV=dev node_modules/.bin/nodemon dist/app.js | ./node_modules/.bin/pino-pretty -c -t",
"compile": "rm -rf dist && ./node_modules/.bin/tsc",
"compile-dev": "rm -rf dist && ./node_modules/.bin/tsc --watch",
"tslint": "./node_modules/.bin/tslint 'src/**/*.ts'",
"deploy": "pm2 deploy ecosystem.json prod"
},
"dependencies": {
"@types/express": "4.16.1",
"@types/lodash": "4.14.123",
"@types/node": "10.12.19",
"@types/pino": "5.8.6",
"axios": "0.18.0",
"class-transformer": "0.2.0",
"class-validator": "0.9.1",
"express": "4.16.4",
"express-pino-logger": "4.0.0",
"inversify": "5.0.1",
"inversify-inject-decorators": "3.1.0",
"lodash": "4.17.11",
"onoff": "4.1.0",
"pino": "5.11.1",
"reflect-metadata": "0.1.13",
"routing-controllers": "0.7.7",
"source-map-support": "0.5.11",
"tsconfig-paths": "3.8.0",
"typescript": "3.4.1"
},
"devDependencies": {
"nodemon": "1.18.10",
"pino-pretty": "2.6.0",
"tslint": "5.14.0",
"tslint-config-airbnb": "5.11.1"
}
}