forked from pagopa/io-functions-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.53 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
{
"name": "@pagopa/io-functions-admin",
"version": "0.31.0",
"license": "MIT",
"scripts": {
"prebuild": "shx rm -rf dist && yarn generate",
"postbuild": "npx dependency-check package.json --no-dev --missing ./dist/**/*.js",
"build": "tsc",
"watch": "tsc -w",
"prestart": "func extensions install --javascript",
"start": "dotenv -e .env func start --javascript",
"predev": "npm-run-all generate build",
"dev": "npm-run-all --parallel start watch",
"pretest": "npm-run-all generate",
"test": "yarn test:only",
"test:only": "jest",
"pretest:coverage": "npm-run-all generate:*",
"test:coverage": "jest --coverage",
"lint": "eslint . -c .eslintrc.js --ext .ts,.tsx",
"lint-api": "oval validate -p openapi/index.yaml",
"dist:modules": "modclean -r -n default:safe && yarn install --production",
"dist:zip": "zip -r dist.zip . --exclude @.funcignore --exclude .funcignore",
"predeploy": "npm-run-all generate build dist:modules",
"generate:definitions": "rimraf ./generated/definitions && shx mkdir -p ./generated/definitions && gen-api-models --api-spec ./openapi/index.yaml --out-dir ./generated/definitions",
"generate:session-api": "rimraf ./generated/session-api && gen-api-models --api-spec https://raw.githubusercontent.com/pagopa/io-backend/v7.19.3/api_session.yaml --out-dir ./generated/session-api --request-types --response-decoders",
"generate": "npm-run-all generate:*",
"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"
},
"description": "",
"devDependencies": {
"@azure/functions": "^1.0.3",
"@pagopa/eslint-config": "^1.3.1",
"@pagopa/openapi-codegen-ts": "^10.0.5",
"@types/documentdb": "^1.10.8",
"@types/express": "^4.17.12",
"@types/jest": "^24.9.1",
"@types/upng-js": "^2.1.1",
"auto-changelog": "^2.3.0",
"azurite": "^3.13.1",
"danger": "^4.0.2",
"danger-plugin-digitalcitizenship": "^0.3.1",
"dotenv-cli": "^3.2.0",
"eslint-plugin-prettier": "^3.4.0",
"fast-check": "^1.26.0",
"jest": "^24.9.0",
"jest-mock-express": "^0.1.1",
"marked": "^3.0.2",
"modclean": "^3.0.0-beta.1",
"npm-run-all": "^4.1.5",
"oval": "^1.0.0",
"prettier": "^1.19.1",
"shx": "^0.3.3",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@azure/arm-apimanagement": "^5.1.1",
"@azure/cosmos": "^3.15.1",
"@azure/graph": "^4.0.1",
"@azure/ms-rest-js": "^2.5.1",
"@azure/ms-rest-nodeauth": "^2.0.6",
"@pagopa/express-azure-functions": "^2.0.0",
"@pagopa/io-functions-commons": "^25.5.2",
"@pagopa/ts-commons": "^10.9.0",
"@types/archiver": "^3.1.1",
"@types/randomstring": "^1.1.6",
"applicationinsights": "^1.8.10",
"archiver": "^4.0.2",
"archiver-zip-encrypted": "^1.0.8",
"azure-storage": "^2.10.4",
"body-parser": "^1.19.0",
"documentdb": "^1.12.2",
"dotenv": "^8.6.0",
"durable-functions": "^1.4.6",
"express": "^4.17.1",
"fp-ts": "^2.11.1",
"html-to-text": "^5.1.1",
"io-ts": "^2.2.16",
"node-fetch": "^2.6.1",
"nodemailer": "^6.6.1",
"nodemailer-sendgrid": "^1.0.3",
"randomstring": "^1.2.1",
"redis": "^3.1.2",
"redis-clustr": "^1.7.0",
"ulid": "^2.3.0",
"upng-js": "^2.1.0",
"winston": "^3.3.3",
"yaml": "^1.10.2"
},
"resolutions": {
"handlebars": "~4.5.3"
}
}