generated from gjuchault/typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
{
"name": "erecht24",
"version": "0.0.0-development",
"type": "module",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=18.17.1",
"npm": ">=9.6.7"
},
"volta": {
"node": "20.12.2",
"npm": "10.5.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run type:dts && npm run build:main",
"build:main": "swc ./src -d ./build",
"clean": "rimraf build coverage nyc_output",
"type:dts": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"type:check": "tsc --noEmit",
"format": "prettier \"src/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release",
"commit": "cz",
"openapi:generate": "openapi-generator-cli generate -i https://api.e-recht24.de/v2openapi.json -g typescript-fetch -o ./src/api/generated --additional-properties=typescriptThreePlus=true,withInterfaces=true,withSeparateModelsAndApi=true,supportsES6=true --skip-validate-spec"
},
"devDependencies": {
"@cspell/dict-de-de": "^4.0.0",
"@openapitools/openapi-generator-cli": "^2.13.4",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.3.62",
"@types/node": "^20.9.0",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitest/coverage-v8": "^1.0.1",
"c8": "^9.1.0",
"cspell": "^8.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^12.0.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"semantic-release": "^23.0.2",
"source-map-support": "^0.5.21",
"typescript": "^5.1.3",
"vitest": "^1.5.3",
"vitest-fetch-mock": "^0.2.2",
"vitest-sonar-reporter": "^2.0.0"
},
"dependencies": {
"browser-or-node": "^3.0.0",
"lru-cache": "^10.2.2"
}
}