forked from cashubtc/orchard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.19 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.19 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "orchard",
"version": "1.0.0",
"description": "a super application for cashu mints and taproot asset lightning nodes",
"author": "shyguy",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build && ng build",
"format": "prettier --write \"src/client/**/*.{ts,html}\" \"src/client/modules/**/*.scss\" \"src/server/**/*.ts\"",
"format:watch": "nodemon --watch src/client --watch src/server --ext ts,html,scss,json --exec \"npm run format\"",
"ng": "ng",
"start": "node dist/main",
"start:client": "npx graphql-codegen && ng serve --proxy-config proxy.conf.js",
"start:server": "nest start --watch",
"start:server:nowatch": "nest start",
"start:server:debug": "nest start --debug --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:client": "ng test",
"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",
"watch:client": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/animations": "^20.1.1",
"@angular/cdk": "^20.1.2",
"@angular/common": "^20.1.1",
"@angular/compiler": "^20.1.1",
"@angular/core": "^20.1.1",
"@angular/forms": "^20.1.1",
"@angular/material": "^20.1.2",
"@angular/material-luxon-adapter": "^20.1.2",
"@angular/platform-browser": "^20.1.1",
"@angular/platform-browser-dynamic": "^20.1.1",
"@angular/router": "^20.1.1",
"@apollo/server": "^4.12.2",
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.7.15",
"@nestjs/apollo": "^13.1.0",
"@nestjs/common": "^11.1.5",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.5",
"@nestjs/graphql": "^13.1.0",
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.5",
"@nestjs/serve-static": "^5.0.3",
"@nestjs/throttler": "^6.4.0",
"chart.js": "^4.5.0",
"chartjs-adapter-luxon": "^1.3.1",
"chartjs-plugin-annotation": "^3.1.0",
"graphql": "^16.11.0",
"graphql-subscriptions": "^3.0.0",
"graphql-tools": "^9.0.20",
"luxon": "^3.7.1",
"marked": "^16.1.1",
"ng2-charts": "^8.0.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"qr-code-styling": "^1.9.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"socks-proxy-agent": "^8.0.5",
"sqlite3": "^5.1.7",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^20.0.0",
"@angular-devkit/build-angular": "^20.1.1",
"@angular/cli": "^20.1.1",
"@angular/compiler-cli": "^20.1.1",
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/typescript": "^4.1.6",
"@nestjs/cli": "^11.0.7",
"@nestjs/schematics": "^11.0.5",
"@nestjs/testing": "^11.1.5",
"@types/express": "^5.0.3",
"@types/jasmine": "~5.1.8",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.6.2",
"@types/node": "^24.0.15",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"dotenv": "^17.2.0",
"dotenv-webpack": "^8.1.1",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jasmine-core": "~5.9.0",
"jest": "^29.7.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}