-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
84 lines (84 loc) · 2.41 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
{
"name": "@pagopa/openapi-codegen-ts",
"version": "14.0.0",
"description": "Tools and utilities for the IO project",
"repository": "https://github.com/pagopa/io-utils",
"author": "https://www.pagopa.gov.it/",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"gen-api-models": "dist/commands/gen-api-models/cli.js",
"gen-api-sdk": "dist/commands/gen-api-sdk/cli.js",
"bundle-api-spec": "dist/commands/bundle-api-spec/cli.js"
},
"files": [
"dist/",
"templates/"
],
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc",
"e2e": "yarn build && cd ./e2e && rimraf node_modules && yarn install --frozen-lockfile && yarn start",
"e2e:lint": "eslint ./e2e -c .eslintrc.js --ext .ts,.tsx",
"pretest": "jest --clearCache",
"test": "jest",
"lint": "eslint . -c .eslintrc.js --ext .ts,.tsx",
"test:coverage": "jest --coverage",
"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"
},
"dependencies": {
"@pagopa/ts-commons": "^10.15.0",
"fs-extra": "^6.0.0",
"nunjucks": "^3.2.3",
"openapi-types": "^10.0.0",
"prettier": "^1.12.1",
"safe-identifier": "^0.4.2",
"swagger-parser": "^10.0.3",
"write-yaml-file": "^4.1.3",
"yargs": "^15.0.1"
},
"devDependencies": {
"@pagopa/eslint-config": "^1.3.1",
"@types/fs-extra": "^5.0.2",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@types/nunjucks": "^3.0.0",
"@types/prettier": "^1.12.0",
"@types/yargs": "^11.1.0",
"auto-changelog": "^2.2.1",
"crlf": "^1.1.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^25.2.7",
"rimraf": "^2.6.2",
"ts-jest": "^25.3.1",
"ts-node": "^6.1.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^4.3.5",
"typestrict": "^0.0.9"
},
"peerDependencies": {
"fp-ts": "^2.16.5",
"io-ts": "^2.2.21"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/__tests__/*.ts"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"resolutions": {
"y18n": "^4.0.1"
}
}