-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "node-ts-backend",
"version": "1.0.0",
"description": "Node.js and typescript backend setup project for blog-tube",
"main": "index.js",
"repository": "https://github.com/leoroese/blog-tube",
"author": "Leonardo Roese",
"license": "MIT",
"scripts": {
"start:dev": "nodemon",
"start:prod": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/src/index.js",
"build": "tsc -p tsconfig.prod.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
},
"dependencies": {
"dotenv-safe": "^8.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}