-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.72 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
81
82
83
84
85
{
"name": "tc-portal",
"version": "1.11.4",
"private": true,
"engineStrict": true,
"scripts": {
"start": "yarn build && cross-env NODE_ENV=production node -r dotenv/config ./build/bin/www",
"start:debug": "yarn build -- --build && cross-env NODE_ENV=development node -r dotenv/config ./build/bin/www",
"uid2": "cross-env NODE_ENV=development VIEW_FOLDER=../views_uid2/ ID_TYPE=UID2 LOCALE_FOLDER=../public/locales_uid2 nodemon -r dotenv/config --watch ./src ./src/bin/www.ts",
"euid": "cross-env NODE_ENV=development VIEW_FOLDER=../views_euid/ ID_TYPE=EUID LOCALE_FOLDER=../public/locales_euid nodemon -r dotenv/config --watch ./src ./src/bin/www.ts",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"build": "tsc",
"test": "jest"
},
"engines": {
"node": ">=20.11",
"yarn": "^1.22.5"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"@types/country-flag-icons": "^1.2.0",
"@types/country-list-js": "^3.1.2",
"@types/google-libphonenumber": "^7.4.23",
"axios": "^0.21.2",
"cookie-parser": "~1.4.4",
"country-codes-list": "^1.6.8",
"country-flag-icons": "^1.5.4",
"country-list-js": "^3.1.7",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-basic-auth": "^1.2.0",
"express-list-endpoints": "^4.0.1",
"express-prom-bundle": "^6.3.4",
"express-winston": "^4.1.0",
"google-libphonenumber": "^3.2.27",
"hbs": "^4.1.1",
"helmet": "^4.4.1",
"http-errors": "~1.6.3",
"i18n": "^0.13.3",
"morgan": "~1.9.1",
"nodemon": "^2.0.20",
"prom-client": "^13.1.0",
"url-pattern": "^1.0.3",
"winston": "^3.3.3",
"zod": "^3.5.1"
},
"devDependencies": {
"@types/cookie-parser": "1.4.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.12",
"@types/express-handlebars": "^5.3.0",
"@types/express-list-endpoints": "^4.0.1",
"@types/hbs": "^4.0.1",
"@types/http-errors": "^1.8.0",
"@types/i18n": "^0.13.1",
"@types/jest": "^26.0.24",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^4.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}