-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.85 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.85 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
86
87
88
{
"name": "@bnqkl/cot-workspaces",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"bin": "dist/src/main.js",
"pkg": {
"scripts": [],
"assets": []
},
"workspaces": [
"packages/*"
],
"scripts": {
"init": "husky install",
"build": "tsc --build ./tsconfig.json",
"dev": "tsc --build ./tsconfig.json --watch",
"lsts": "node ./scripts/listAllFile.js",
"clear": "node ./scripts/rmBuild.js",
"rebuild": "npm run clear && npm run build",
"format": "prettier --write \"packages/**/*.ts\"",
"start": "nest start",
"lint": "eslint \"{packages}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:payment-verify": "jest --config ./test/jest-payment-verify.json",
"pkg:linux": "node scripts/build.js --linux",
"pkg:win": "node scripts/build.js --win",
"pkg:all": "node scripts/build.js --all",
"pkg:test": "node scripts/build.js --linux --test",
"initconfig": "node scripts/updateConfig.js",
"publ:force": "lerna publish --force-publish"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/amqplib": "^0.10.1",
"@types/express": "^4.17.13",
"@types/jest": "28.1.8",
"@types/node": "^16.0.0",
"@types/passport-jwt": "^3.0.8",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"bip39": "^3.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"jest": "28.1.3",
"lerna": "^8.2.3",
"oxlint": "^1.12.0",
"prettier": "^3.6.2",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "28.0.8",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}