generated from pagopa/io-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
106 lines (106 loc) · 3 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
{
"name": "@pagopa/io-spid-commons",
"version": "14.0.0",
"description": "Common code for integrating SPID authentication",
"repository": {
"type": "git",
"url": "git+https://github.com/pagopa/io-spid-commons.git"
},
"bin": {
"startup-idps-metadata": "dist/bin/startup-idps-metadata.js"
},
"author": "https://pagopa.gov.it",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "shx rm -rf dist",
"build": "tsc",
"dev": "nodemon --inspect=0.0.0.0 dist/example.js",
"hot-reload": "nodemon --legacy-watch --watch ./dist --inspect=0.0.0.0 --nolazy dist/example.js",
"postversion": "git push && git push --tags",
"test": "jest -i",
"lint": "eslint . -c .eslintrc.js --ext .ts,.tsx",
"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": {
"@pagopa/eslint-config": "^3.0.0",
"@types/express": "4.17.11",
"@types/jest": "^29.5.1",
"@types/node": "~20.12.2",
"@types/node-fetch": "^2.1.2",
"@types/node-forge": "^0.9.1",
"@types/passport": "^1.0.2",
"@types/passport-saml": "1.1.1",
"@types/request-ip": "0.0.35",
"@types/semver": "^7.3.10",
"@types/supertest": "^2.0.8",
"@types/xml-crypto": "^1.4.1",
"@types/xml2js": "^0.4.5",
"@types/yargs": "^15.0.4",
"auto-changelog": "^2.2.1",
"eslint-plugin-prettier": "^4.2.1",
"express": "4.17.0",
"fp-ts": "^2.16.5",
"io-ts": "^2.2.21",
"jest": "^29.5.0",
"nock": "^11.7.1",
"nodemon": "^2.0.2",
"prettier": "^2.8.8",
"redis": "^4.5.1",
"request-ip": "^2.1.3",
"shx": "^0.3.2",
"supertest": "^4.0.2",
"ts-jest": "^29.1.0",
"typescript": "4.9.5"
},
"dependencies": {
"@pagopa/ts-commons": "^13.1.0",
"@xmldom/xmldom": "^0.8.7",
"date-fns": "^1.30.1",
"io-ts-types": "^0.5.16",
"jose": "^4.11.2",
"node-fetch": "^2.2.0",
"node-forge": "^1.0.0",
"passport": "^0.6.0",
"passport-saml": "1.3.5",
"semver": "^7.3.7",
"winston": "^3.0.0",
"xml-crypto": "^1.4.0",
"xml2js": "^0.4.23",
"yargs": "^15.3.0"
},
"peerDependencies": {
"fp-ts": "^2.16.5",
"io-ts": "^2.2.21",
"redis": "^4.5.1"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
"moduleFileExtensions": [
"js",
"node",
"ts"
],
"preset": "ts-jest",
"testMatch": null
},
"bugs": {
"url": "https://github.com/pagopa/io-spid-commons/issues"
},
"homepage": "https://github.com/pagopa/io-spid-commons#readme",
"keywords": [
"spid"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"resolutions": {
"@types/express-serve-static-core": "4.17.34",
"eslint-plugin-jsdoc": "^50"
}
}