-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.3 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
60
61
62
63
64
65
66
{
"name": "sample-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run lint && npm run copy-static-assets",
"serve": "node dist/index.js",
"pm2-serve": "pm2-runtime ecosystem.config.js",
"watch-node": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TS,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --passWithNoTests --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect=0.0.0.0:9222 dist/index.js",
"debug-watch": "nodemon --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"docker-debug": "docker-compose -f docker-compose.dev.yml up"
},
"keywords": [],
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.7",
"@types/shelljs": "^0.8.6",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"concurrently": "^5.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"shelljs": "^0.8.3",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.4"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-openapi-validator": "^3.12.9",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"unirest": "^0.6.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.1"
}
}