-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.99 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
{
"author": "Multiple authors",
"bugs": {
"url": "https://github.com/notaphplover/one-game/issues"
},
"description": "Backend api models",
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "11.9.3",
"@cornie-js/api-json-schemas-provider": "workspace:*",
"@cornie-js/json-schema-utils": "workspace:*",
"@eslint/js": "9.21.0",
"@jest/globals": "29.7.0",
"@types/node": "22.13.9",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"eslint": "9.21.0",
"jest": "29.7.0",
"json-schema-to-typescript": "15.0.4",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"ts-jest": "29.2.6",
"ts-node": "10.9.2",
"typescript": "5.8.2"
},
"homepage": "https://github.com/notaphplover/one-game#readme",
"license": "See license in \"LICENSE\" file",
"main": "lib/index.js",
"name": "@cornie-js/api-models",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notaphplover/one-game.git"
},
"scripts": {
"build": "pnpm run build:ts && pnpm run schemas:generate && pnpm run build:ts",
"build:clean": "rimraf lib",
"build:ts": "tsc --build tsconfig.json",
"format": "prettier --write ./src/**/*.ts",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"schemas:generate": "pnpm run schemas:generate:ts:ids && pnpm run schemas:generate:ts",
"schemas:generate:ts": "node ./lib/scripts/generateTsModels ./src/models/types.ts",
"schemas:generate:ts:ids": "node ./lib/scripts/generateApiJsonSchemasIdEnum ./src/models",
"test": "jest --config=jest.config.mjs --runInBand",
"test:integration:js": "pnpm run test:js --selectProjects Integration",
"test:js": "jest --config=jest.js.config.mjs --runInBand",
"test:js:coverage": "pnpm run test:js --coverage",
"test:uncommitted": "pnpm run test --changedSince=HEAD",
"test:unit:js": "pnpm run test:js --selectProjects Unit"
},
"version": "0.4.0"
}