-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"author": "Multiple authors",
"bugs": {
"url": "https://github.com/notaphplover/one-game/issues"
},
"description": "Backend app jwt",
"dependencies": {
"@nestjs/common": "^11.0.11"
},
"devDependencies": {
"@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",
"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/backend-app-uuid",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notaphplover/one-game.git"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"build:clean": "rimraf lib",
"format": "prettier --write ./src/**/*.ts",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"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.2.0"
}