-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "@bnqkl/wallet-workspaces",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"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": "node packages/wallet/build/src/main.js",
"lint": "eslint \"{packages}/**/*.ts\" --fix",
"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": {
"@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",
"husky": "^8.0.1",
"lerna": "^8.2.3",
"oxlint": "^1.12.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.20",
"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"
}
}