-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.91 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.91 KB
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
{
"name": "io-dev-api-server",
"pretty_name": "IO App - dev server",
"description": "A mock server to help io-app development https://io.italia.it/",
"version": "1.0.0",
"main": "app.js",
"author": "Matteo Boschi",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"test": "jest",
"test-watch": "jest --watch",
"test:ci": "jest --ci --maxWorkers=2 --silent",
"test:dev": "jest --detectOpenHandles --coverage=false",
"lint": "eslint . -c .eslintrc.js --ext .ts,.tsx",
"lint-autofix": "eslint . -c .eslintrc.js --ext .ts,.tsx --fix",
"start": "ts-node src/start.ts",
"prettify": "prettier --write \"src/**/*.ts*\"",
"prettier:check": "prettier --check \"src/**/*.(ts|tsx)\"",
"tsc:noemit": "tsc --noEmit",
"generate": "./scripts/generate-api-models.sh",
"prepare": "husky install"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": false,
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs"
}
},
"dependencies": {
"@mattrglobal/http-signatures": "^4.0.1",
"@pagopa/ts-commons": "^10.15.0",
"axios": "^1.10.0",
"body-parser": "^1.19.2",
"chalk": "^4.1.1",
"cli-ux": "^5.6.3",
"compare-versions": "^6.0.0-rc.1",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"date-fns": "^2.27.0",
"escape-html": "^1.0.3",
"express": "^4.21.2",
"figlet": "^1.5.2",
"fp-ts": "^2.16.9",
"io-ts": "^2.2.22",
"jose": "^4.15.5",
"jsontokens": "^4.0.1",
"lodash": "^4.17.21",
"morgan": "^1.10.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sha256": "^0.2.0",
"ts-pattern": "^3.3.4",
"ulid": "^2.3.0",
"uuid": "^9.0.1",
"xml2js": "^0.5.0"
},
"resolutions": {
"zlib": "^1.0.5"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@pagopa/openapi-codegen-ts": "^14.0.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.7",
"@types/date-fns": "^2.6.0",
"@types/escape-html": "^1.0.4",
"@types/express": "^4.17.21",
"@types/figlet": "^1.5.4",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.14.178",
"@types/morgan": "^1.9.10",
"@types/node": "^22.15.32",
"@types/sha256": "^0.2.0",
"@types/supertest": "^2.0.8",
"@types/uuid": "^9.0.8",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-functional": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.0",
"jest": "^30.2.0",
"nodemon": "^2.0.15",
"prettier": "2.8.8",
"supertest": "^6.2.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.4.0",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint -c .eslintrc.js --fix"
]
},
"packageManager": "yarn@3.8.7"
}