-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.94 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.94 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
{
"name": "partmin",
"private": true,
"license": "MIT",
"scripts": {
"g:tsx": "tsx",
"bot": "yarn workspace presence-auditor start & yarn workspace bot start",
"bot-check": "yarn workspace bot check && yarn workspace presence-auditor check",
"bot-dev": "yarn bot-check && yarn bot"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"dayjs": "^1.11.13",
"dotenv-mono": "^1.3.13",
"tsx": "^4.7.1"
},
"devDependencies": {
"@types/node": "^20.11.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^2.8.4",
"typescript": "^5.3.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"unused-imports"
],
"extends": [
"prettier"
],
"overrides": [
{
"files": [
"**/*.ts",
"**/*.tsx"
],
"rules": {
"no-use-before-define": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"object-shorthand": [
"error",
"always"
],
"require-await": "warn",
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
],
"no-restricted-imports": [
"error",
{
"patterns": [
".*"
]
}
]
},
"parserOptions": {
"project": [
"./tsconfig.json"
]
}
},
{
"files": [
"advanced-config.ts"
],
"rules": {
"no-restricted-imports": "off"
}
}
],
"parserOptions": {
"ecmaVersion": "latest"
},
"env": {
"es6": true
}
},
"packageManager": "yarn@3.7.0"
}