generated from gcleiton/ts-api-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.71 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
{
"name": "ts-api-boilerplate",
"version": "1.0.0",
"description": "A personal boilerplate that I use in my Node APIs with Typescript",
"author": "Gabriel Cleiton <[email protected]>",
"repository": "https://github.com/gcleiton/ts-api-boilerplate.git",
"license": "MIT",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"build:watch": "rimraf dist && tsc -p tsconfig-build.json -w",
"debug": "nodemon -L --watch ./dist ./dist/main/server.js",
"up": "npm run build && docker-compose up -d",
"down": "docker-compose down",
"lint": "eslint src --max-warnings=0 --fix",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:unit": "yarn test --watch -c jest-unit.config.js",
"test:integration": "yarn test --watch -c jest-integration.config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"git-commit-msg-linter": "^3.2.6",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"express": "^4.17.1",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2"
},
"engines": {
"node": "16.x"
}
}