-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.62 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
80
{
"name": "custom-crm-automation-template",
"version": "1.9.2",
"repository": {
"type": "git",
"url": "https://github.com/ultimateai/template-repo-ts.git"
},
"private": true,
"scripts": {
"start": "node ./dist/src/server.js",
"dev": "ts-node-dev src/server.ts",
"devDebug": "node --inspect=9229 -r ts-node/register src/server.ts",
"test": "jest --testRegex='./tests/.*.(spec|test).ts$'",
"lint": "eslint . --ext .ts,.tsx",
"lintFix": "eslint . --ext .ts,.tsx --fix",
"artifactregistry-login": "npx google-artifactregistry-auth",
"prepare": "node ./prepare.js",
"prebuild": "npm i && npm run clean",
"build": "npm i && tsc --skipLibCheck -p tsconfig-build.json",
"clean": "rimraf ./dist"
},
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"axios": "^1.5.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"prom-client": "^15.0.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^5.0.0",
"tslog": "^4.9.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.4",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^9.0.4",
"@types/lodash": "^4.14.200",
"@types/morgan": "^1.9.7",
"@types/node": "^20.8.9",
"@types/swagger-ui-express": "^4.1.5",
"@types/uuid": "^9.0.6",
"@types/yamljs": "^0.2.33",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"engines": {
"npm": ">=9.0.0 <10.0.0",
"node": ">=18.0.0 <19.0.0"
},
"config": {
"mongodbMemoryServer": {
"version": "4.4.22"
}
}
}