-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "civ6ranked",
"private": true,
"type": "module",
"scripts": {
"start": "turbo run start",
"start:headless": "turbo run start --filter=@civ6ranked/backend --filter=@civ6ranked/discord",
"start:local": "turbo run start --filter=@civ6ranked/local",
"dev": "turbo run dev",
"dev:headless": "turbo run dev --filter=@civ6ranked/backend --filter=@civ6ranked/discord",
"dev:local": "turbo run dev --filter=@civ6ranked/local",
"lint": "eslint .",
"fmt": "prettier --write .",
"sql:up": "turbo run sql:up",
"types": "turbo run types"
},
"dependencies": {
"turbo": "^2.8.10"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@commitlint/types": "^20.4.0",
"@eslint/js": "^9.22.0",
"@types/bun": "^1.2.16",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"typescript": "5.9.2",
"typescript-eslint": "^8.28.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.23",
"workspaces": [
"apps/*"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 140,
"quoteProps": "consistent",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "avoid"
}
}