This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "miko-monorepo",
"license": "MIT",
"private": true,
"description": "Miko is simple, multipurpose bot that will help you with your server, which you can manage using the dashboard on our website.",
"homepage": "https://mikoapp.xyz/",
"bugs": {
"url": "https://github.com/SocketSomeone/Miko/issues",
"email": "socket.someone@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketSomeone/Miko.git"
},
"author": {
"name": "Alexey | someone#6191",
"email": "socket.someone@gmail.com",
"url": "https://github.com/SocketSomeone"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prebuild": "rimraf -rf ./{apps,packages}/*/{lib,*.tsbuildinfo}",
"build": "tsc --build ./typescript/tsconfig.project.json",
"test": "jest --no-cache --config test/jest.config.json",
"update:tsconfig": "ts-node scripts/update-package-tsconfig.ts",
"update:languages": "ts-node scripts/update-languages.ts",
"prepare": "husky install .github/husky"
},
"lint-staged": {
"{apps,packages,scripts}/*/src/**/*.ts": [
"eslint --fix --ignore-path .gitignore {apps,packages,scripts}/*/src/**/*.ts"
]
},
"dependencies": {
"@crowdin/crowdin-api-client": "1.11.0",
"@nestjs/common": "^7.0.0",
"@nestjs/config": "0.6.3",
"@nestjs/core": "^7.0.0",
"@nestjs/schedule": "0.4.3",
"@types/jest": "26.0.23",
"@types/supertest": "2.0.11",
"discord.js": "12.5.3",
"extract-zip": "2.0.1",
"glob": "7.1.7",
"jest": "27.0.5",
"moment": "2.29.1",
"reflect-metadata": "0.1.13",
"rxjs": "^6.5.4",
"supertest": "6.1.3",
"ts-jest": "27.0.3",
"tslib": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-angular": "12.1.4",
"@nestjs/cli": "^7.0.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "7.6.17",
"@types/cron": "1.7.2",
"@types/i18n": "0.13.0",
"@types/moment": "2.13.0",
"@types/node": "14.14.35",
"@types/ws": "7.4.4",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"eslint": "7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.3.1",
"husky": "^6.0.0",
"lint-staged": "11.0.0",
"mockdate": "3.0.5",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"ts-loader": "8.3.0",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0"
},
"engines": {
"node": ">=12.0.0"
}
}