-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.69 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
{
"name": "thoth",
"private": true,
"version": "0.0.0",
"description": "the bot for all things ELA",
"type": "module",
"workspaces": [
"apps/**",
"packages/**",
"!**/dist"
],
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"build:affected": "turbo run build --filter='...[origin/main]' --concurrency=4",
"dev:bot": "turbo run dev --filter bot --cache-dir=.turbo",
"dev:web": "turbo run dev --filter web --cache-dir=.turbo",
"lint": "turbo run lint --concurrency=4 --cache-dir=.turbo",
"format": "turbo run format --concurrency=4 --cache-dir=.turbo"
},
"author": "Carter Himmel <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-angular": "^18.6.1",
"@types/common-tags": "^1.8.4",
"@types/node": "^20.11.27",
"@typescript-eslint/parser": "^6.21.0",
"astro-eslint-parser": "^0.16.3",
"cpy-cli": "^5.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-neon": "^0.1.59",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"lodash.merge": "^4.6.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"turbo": "^2.0.14",
"typescript": "^5.4.2"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"{src/**,__tests__/**}.{mjs,js,cjs,ts,tsx}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types",
"wip"
]
]
}
},
"volta": {
"node": "20.14.0",
"yarn": "4.0.1"
},
"packageManager": "[email protected]"
}