-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
45 lines (45 loc) · 1.67 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
{
"name": "lagon",
"version": "0.0.1",
"description": "Deploy Serverless Functions at the Edge",
"private": true,
"scripts": {
"start:docs": "pnpm --filter @lagon/docs dev",
"start:www": "pnpm --filter @lagon/www dev",
"test": "turbo test --continue --filter=!@lagon/example-*",
"build": "turbo build --continue --filter=!@lagon/example-*",
"lint": "turbo lint --continue",
"typecheck": "turbo typecheck --continue",
"docker:serverless:build": "docker build -t lagon/serverless -f docker/Dockerfile.serverless .",
"docker:serverless:start": "docker run --rm -p 4000:4000 --env-file crates/serverless/.env lagon/serverless",
"docker:dashboard:build": "docker build -t lagon/dashboard -f docker/Dockerfile.dashboard .",
"docker:dashboard:start": "docker run --rm -p 3000:3000 --env-file packages/dashboard/.env lagon/dashboard",
"release": "pnpm build --filter=@lagon/astro --filter=@lagon/remix && pnpm changeset publish"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@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.18.7",
"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",
"vitest": "^0.33.0"
}
}