-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.92 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
{
"name": "node-starter-ts",
"version": "1.0.0",
"description": "Node.js starter package written in Typescript.",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest",
"format": "prettier --config .prettierrc --write .",
"lint": "eslint . --ext .ts",
"build": "tsc -p ./tsconfig.json",
"build:bash": "bash -c tsc -p ./tsconfig.json",
"prepare": "husky install",
"documentation:create": "",
"dependecy:graph": "madge --image graph.svg src/index.ts",
"dependecy:list": "madge src/index.ts",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down"
},
"author": "okanaslan",
"license": "ISC",
"dependencies": {
"@google-cloud/logging": "^10.0.3",
"@sentry/node": "^7.1.1",
"@sentry/tracing": "^7.1.1",
"@types/express": "4.17.13",
"dotenv": "16.0.1",
"express": "4.18.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"openapi3-ts": "^2.0.2",
"swagger-ui-express": "^4.4.0",
"ts-json-schema-generator": "^1.0.0",
"ts-node": "10.8.1",
"typescript": "4.7.3"
},
"devDependencies": {
"@types/jest": "28.1.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/supertest": "2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"eslint": "8.17.0",
"husky": "8.0.1",
"jest": "28.1.1",
"lint-staged": "13.0.1",
"madge": "^5.0.1",
"prettier": "^2.6.2",
"supertest": "6.2.3",
"ts-jest": "28.0.4"
},
"lint-staged": {
"*.{js,json,ts}": [
"npm run build:bash",
"npm run dependecy:graph",
"npm run lint",
"npm run format"
]
}
}