generated from fariasmateuss/boilerplate-for-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
{
"name": "boilerplate-for-nodejs",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"author": {
"email": "mateus_vinicius15@outlook.com",
"name": "Mateus V. Farias",
"url": "https://github.com/fariasmateuss/boilerplate-for-nodejs"
},
"scripts": {
"build": "tsc",
"dev:server": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/server.ts",
"lint": "eslint . --fix --ext .ts",
"prettier": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js)\" --write",
"typeorm:cli": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli --config ./src/config/database.config.ts",
"postinstall": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js}": [
"yarn lint",
"yarn prettier"
]
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.2"
},
"dependencies": {
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"js-base64": "^3.7.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"postgres": "^1.0.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.41"
}
}