-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.41 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
{
"name": "lagoss",
"version": "0.0.1",
"description": "Deploy Serverless Functions at the Edge",
"private": true,
"scripts": {
"start:docs": "pnpm --filter @lagoss/docs dev",
"test": "turbo test --continue --filter=!@lagoss/example-*",
"build": "turbo build --continue --filter=!@lagoss/example-*",
"lint": "turbo lint --continue",
"typecheck": "turbo typecheck --continue",
"docker:serverless:build": "docker build -t ghcr.io/lagossapp/serverless -f docker/Dockerfile.serverless .",
"docker:dashboard:build": "docker build -t ghcr.io/lagossapp/dashboard -f docker/Dockerfile.dashboard .",
"release": "pnpm build --filter=@lagoss/astro --filter=@lagoss/remix && pnpm changeset publish"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@typescript-eslint/typescript-estree": "^6.2.0",
"c8": "^8.0.0",
"esbuild": "^0.24.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"tsup": "^7.1.0",
"turbo": "^1.10.11",
"typescript": "^5.1.3"
}
}