-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.77 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.77 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
{
"name": "@bnqkl/swap",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"bin": "./dist/apps/api/app.js",
"scripts": {
"init": "husky install",
"clear": "node ./scripts/rmBuild.js",
"dev": "tsc --build ./tsconfig.json --watch",
"build": "tsc --build ./tsconfig.json",
"rebuild": "npm run clear && npm run build",
"format": "prettier --write \"packages/**/*.ts\"",
"start": "node packages/app/build/src/app.js",
"pkg:linux": "node scripts/build.js --linux",
"pkg:win": "node scripts/build.js --win",
"pkg:all": "node scripts/build.js --all",
"pkg:b-linux": "node scripts/buildProd.js linux",
"pkg:b-win": "node scripts/buildProd.js win32",
"pkg:b-all": "node scripts/buildProd.js all",
"lint": "eslint \"{packages}/**/*.ts\" --fix",
"publ:force": "lerna publish --force-publish",
"rn:ds": "node ./scripts/changeName.js",
"rn:biw": "node ./scripts/changeNameToBiw.js",
"db:ds": "npm run rebuild && npm run pkg:linux && npm run rn:ds",
"db:biw": "npm run rebuild && npm run pkg:linux && npm run rn:biw"
},
"devDependencies": {
"@nestjs/cli": "^10.1.18",
"@nestjs/schematics": "^10.0.2",
"@types/express": "^4.17.13",
"@types/jest": "29.5.1",
"@types/node": "^24.3.0",
"@types/request": "^2.48.8",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"esbuild": "^0.11.6",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.2",
"husky": "^8.0.1",
"jest": "29.5.0",
"oxlint": "^1.12.0",
"prettier": "^3.6.2",
"request": "^2.48.8",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.1.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/libs/",
"<rootDir>/apps/"
],
"moduleNameMapper": {
"^@lib/framework(|/.*)$": "<rootDir>/libs/framework/$1"
}
},
"dependencies": {
"tslib": "^2.8.1"
}
}