-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "searchy",
"version": "0.0.0",
"workspaces": [
"packages/*",
"apps/*"
],
"repository": "https://github.com/alii/search",
"contributors": [
"Alistair Smith <[email protected]>",
"Carter Himmel <[email protected]>"
],
"license": "MIT",
"type": "commonjs",
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"build:affected": "turbo run build --filter='...[origin/main]' --cache-dir=.turbo",
"build:services": "turbo run build:local --filter='...{services/*}' --cache-dir=.turbo",
"build:services:affected": "turbo run build:local --filter='...{services/*}[origin/main]' --cache-dir=.turbo",
"lint": "turbo run lint --parallel",
"lint:affected": "turbo run lint --filter='...[origin/main]' --parallel",
"format": "turbo run format --parallel",
"format:affected": "turbo run format --filter='...[origin/main]' --parallel",
"act": "act pull_request",
"act:m1": "act --container-architecture linux/amd64 pull_request"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-neon": "^0.1.47",
"eslint-formatter-pretty": "^5.0.0",
"prettier": "^2.8.8",
"tsup": "^7.1.0",
"turbo": "^1.10.12",
"typescript": "^5.1.6",
"vite": "^4.4.7"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.17.0",
"yarn": "4.0.0-rc.48"
}
}