-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.77 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "api-auth-caas-2.0",
"version": "0.1.0",
"scripts": {
"dev": "nodemon --watch src --ext ts --exec \"ts-node src\"",
"build": "webpack build",
"prepare": "husky install",
"lint": "eslint '*.{js,ts}' --fix",
"compose": "docker-compose down --remove-orphans && docker-compose up --build --force-recreate",
"compose:d": "npm run compose -- -d",
"test:v": "jest --passWithNoTests --runInBand --detectOpenHandles --verbose",
"test": "jest --passWithNoTests --runInBand --detectOpenHandles --silent --noStackTrace",
"test:w": "npm run test -- --watch",
"test:u": "npm run test -- -c jest.unit.config.ts",
"test:i": "npm run test -- -c jest.integration.config.ts",
"test:ci": "npm run test -- --coverage",
"test:ci:u": "npm run test:u -- --coverage",
"test:ci:i": "npm run test:i -- --coverage",
"test:staged": "npm test -- --findRelatedTests",
"test:badges": "npm run test:ci && jest-coverage-badges input './.coverage/coverage-summary.json' output './.public'"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@jest/types": "29.4.1",
"@types/express": "4.17.16",
"@types/jest": "29.4.0",
"@types/jsonwebtoken": "9.0.1",
"@types/ms": "0.7.31",
"@types/node": "18.11.18",
"@types/supertest": "2.0.12",
"@types/swagger-ui-express": "4.1.3",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"commitlint": "17.4.2",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.3",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard-with-typescript": "33.0.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"husky": "^8.0.0",
"jest": "29.4.1",
"jest-coverage-badges": "1.1.2",
"jest-environment-node": "29.4.1",
"lint-staged": "13.1.0",
"nodemon": "2.0.20",
"polyfill-json-stringify-omit-null-value": "1.0.0",
"rimraf": "4.1.2",
"supertest": "6.3.3",
"terser-webpack-plugin": "5.3.6",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"tsconfig-paths-webpack-plugin": "4.0.0",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"express": "4.18.2",
"express-async-errors": "3.1.1",
"express-winston": "4.2.0",
"joi": "^17.7.0",
"jsonwebtoken": "9.0.0",
"ms": "^2.1.3",
"openapi-types": "12.1.0",
"pg": "8.9.0",
"swagger-ui-express": "^4.6.0",
"typeorm": "0.3.11",
"winston": "3.8.2"
}
}