-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
{
"name": "typescript-microservice-starter",
"version": "1.2.0",
"description": "TypeScript microservice starter project.",
"main": "build",
"author": "Maksim Sinik <[email protected]>",
"license": "MIT",
"scripts": {
"prebuild": "npm run lint && rimraf ./build",
"build": "tsc -p ./tsconfig.json",
"update": "npx npm-check -u",
"prettier": "prettier --loglevel warn --write \"src/**/*.{ts,tsx}\"",
"prelint": "npm run prettier",
"lint": "tslint --fix -c tslint.json -t stylish -p ./tsconfig.json",
"dev:clean": "rimraf build",
"dev:build": "tsc --incremental -p tsconfig.json",
"dev:start": "node --inspect -r source-map-support/register -r dotenv/config build/index.js",
"dev": "cross-env NODE_ENV=development npm run dev:clean && nodemon -w src -e ts --exec \"npm run dev:build && npm run dev:start\"",
"test": "tap test/**/*.ts",
"test:watch": "nodemon -e ts -w \"./src\" -w \"./test\" -x \"npm run test\"",
"test:report": "npm run test | tee out.tap",
"test:reporter": "tap-mocha-reporter xunit < out.tap > junit-testresults.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nucleode/typescript-microservice-starter.git"
},
"dependencies": {
"make-promises-safe": "^5.1.0"
},
"devDependencies": {
"@types/node": "^13.13.4",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"husky": "^4.2.5",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"tap": "^14.10.7",
"tap-mocha-reporter": "^5.0.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "~1.18.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run build"
}
},
"bugs": {
"url": "https://github.com/nucleode/typescript-microservice-starter/issues"
},
"homepage": "https://github.com/nucleode/typescript-microservice-starter#readme",
"directories": {
"test": "test"
},
"keywords": []
}