generated from pagopa/io-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 3.44 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@pagopa/io-functions-commons",
"version": "29.3.0",
"description": "Common code for Azure functions",
"repository": "https://github.com/pagopa/io-functions-commons",
"author": "https://www.pagopa.gov.it",
"license": "MIT",
"files": [
"dist/",
"openapi/**/*.y*ml"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn generate:definitions && yarn generate:lollipop-definitions && tsc",
"postversion": "git push && git push --tags",
"test": "jest -i",
"test:coverage": "jest --coverage",
"test:integration": "yarn build && cd ./__integrations__ && yarn install --frozen-lockfile && yarn start",
"test:all": "yarn test && yarn test:integration",
"lint": "eslint . -c .eslintrc.js --ext .ts,.tsx",
"generate": "npm-run-all generate:*",
"generate:definitions": "rimraf ./generated && gen-api-models --api-spec ./openapi/index.yaml --out-dir ./generated/definitions",
"generate:lollipop-definitions": "rimraf ./generated/definitions/lollipop && gen-api-models --api-spec ./openapi/lollipop_definitions.yaml --out-dir ./generated/definitions/lollipop",
"generate:templates": "gulp generate:templates",
"preversion": "auto-changelog --config .auto-changelog.json --unreleased --commit-limit false --stdout --template preview.hbs",
"version": "auto-changelog -p --config .auto-changelog.json --unreleased && git add CHANGELOG.md"
},
"devDependencies": {
"@azure/functions": "^3.2.0",
"@babel/runtime": "^7.14.5",
"@pagopa/eslint-config": "^1.3.1",
"@pagopa/openapi-codegen-ts": "^11.0.0",
"@types/express": "^4.17.12",
"@types/jest": "^24.9.1",
"@types/node": "~18.13.0",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.2",
"@types/nodemailer-sendgrid": "^1.0.0",
"@types/request-ip": "^0.0.33",
"@types/winston": "^2.4.4",
"auto-changelog": "^2.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gulp": "^3.9.1",
"gulp-prettier": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-text-simple": "^0.5.5",
"jest": "^29.7.0",
"json-set-map": "^1.1.2",
"mjml": "^4.9.3",
"npm-run-all": "^4.1.1",
"prettier": "^1.14.3",
"rimraf": "^2.7.1",
"ts-jest": "^29.1.1",
"typescript": "^4.3.5",
"fp-ts": "^2.16.5",
"io-ts": "^2.2.21"
},
"dependencies": {
"@azure/cosmos": "^4.0.0",
"@azure/data-tables": "^13.2.2",
"@pagopa/ts-commons": "^13.1.1",
"applicationinsights": "^2.9.5",
"azure-storage": "^2.10.5",
"cidr-matcher": "^2.1.1",
"helmet": "^4.6.0",
"helmet-csp": "^2.5.1",
"node-fetch": "^2.6.1",
"nodemailer": "^6.9.13",
"nodemailer-sendgrid": "^1.0.3",
"referrer-policy": "^1.1.0",
"rehype-stringify": "^3.0.0",
"remark-frontmatter": "^2.0.0",
"remark-parse": "^5.0.0",
"remark-rehype": "^3.0.0",
"request-ip": "^3.3.0",
"ulid": "^2.3.0",
"unified": "^9.2.2",
"winston": "^3.1.0"
},
"peerDependencies": {
"@azure/functions": "^3.2.0",
"express": "^4.15.3",
"fp-ts": "^2.16.5",
"io-ts": "^2.2.21"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"ts",
"tsx"
],
"preset": "ts-jest",
"testMatch": [
"**/__tests__/*.ts"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"resolutions": {
"graceful-fs": "^4.2.4"
},
"packageManager": "yarn@4.1.1"
}