-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "@guilded-interactions/main",
"private": true,
"version": "0.0.0",
"description": "Overarching repository for Yoki",
"author": "Zaid \"Nico\" <contact@nico.engineer>",
"scripts": {
"build": "yarn workspaces run build",
"lint": "npx eslint services/",
"lint:fix": "yarn lint --fix",
"prepare": "npx husky install",
"prettier": "npx prettier --write **/*.{ts,js,json,yml,yaml,md}",
"clear": "npx rimraf node_modules services/**/node_modules",
"migrate": "cd services/gateway && yarn migrate:dev",
"generate": "cd services/gateway && yarn generate"
},
"devDependencies": {
"@sapphire/eslint-config": "^4.3.2",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"dotenv": "^16.0.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"prettier": "2.6.0",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2"
},
"dependencies": {
"typescript": "^4.1.3"
},
"workspaces": [
"services/gateway",
"services/*"
],
"prettier": {
"endOfLine": "auto",
"printWidth": 180,
"semi": true,
"tabWidth": 4
},
"lint-staged": {
"*.{js,ts}": "npx eslint --fix"
}
}