-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.1 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nordic-whales-bot",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"rucken": "rucken",
"start": "node dist/apps/server/main.js",
"build": "npm run nx -- build server",
"test": "nx test",
"serve": "npm run nx -- serve server",
"serve:local": "export $(xargs < ./.env.local) && npm run serve",
"prepare": "husky install",
"lint": "npm run tsc:lint && nx workspace-lint && npm run nx -- run-many --target=lint --all",
"lint:fix": "npm run tsc:lint && nx workspace-lint --fix && nx run-many --target=lint --all --fix && nx format:write --all",
"tsc:lint": "tsc --noEmit -p tsconfig.base.json",
"generate": "npm run rucken -- prepare && npm run lint:fix"
},
"private": true,
"devDependencies": {
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nrwl/nest": "^17.0.3",
"@nx/eslint": "17.0.3",
"@nx/eslint-plugin": "17.0.3",
"@nx/jest": "17.0.3",
"@nx/js": "17.0.3",
"@nx/nest": "17.0.3",
"@nx/node": "17.0.3",
"@nx/webpack": "17.0.3",
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
"@types/jest": "^29.4.0",
"@types/node": "~18.7.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "~8.46.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"lint-staged": "^15.0.2",
"nx": "17.0.3",
"prettier": "^2.6.2",
"rucken": "^4.6.4",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.1.3"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"axios": "^1.0.0",
"joi": "^17.11.0",
"nestjs-telegraf": "^2.7.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"telegraf": "^4.15.0",
"tslib": "^2.3.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,scss,md}": "prettier -ignore-unknown --write"
}
}