-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.23 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
{
"name": "common_ubot",
"version": "0.0.1",
"description": "Telegram bot extends urban-bot",
"repository": "https://github.com/SergoZheludkov/smernova-ubot-ts",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run start --stream --parallel",
"dev": "lerna run dev --stream --parallel",
"lint": "eslint \"packages/**/*.{ts,tsx,js,jsx}\"",
"test": "lerna run test --stream --parallel",
"build": "lerna run build --stream",
"lint:fix": "yarn run lint -- --fix",
"typecheck": "lerna run typecheck --stream --parallel",
"typecheck:admin-web": "lerna run typecheck --stream",
"prepare": "lerna run prepare --stream",
"server:dev": "cd packages/server && yarn start:nest",
"bot:dev": "cd packages/bot && yarn dev",
"build:i18n": "cd packages/i18n && yarn build",
"build:api": "cd packages/api-client && yarn build",
"build:utilits": "cd packages/utilits && yarn build"
},
"dependencies": {
"date-fns": "2.16.1",
"dotenv": "8.2.0",
"typescript": "3.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"husky": "4.3.0",
"jest": "^25.4.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.1",
"ngrok": "^3.2.7",
"prettier": "^2.1.2",
"ts-jest": "^25.4.0"
},
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,ts,tsx}": [
"prettier --write",
"eslint"
],
"**/*.{json,yaml,yml,toml}": [
"prettier --write"
]
},
"prettier": {
"useTabs": false,
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"arrowParens": "always",
"endOfLine": "lf"
},
"author": "Sergei Zheludkov",
"private": true
}