-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 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
43
44
45
46
{
"name": "turboless",
"version": "1.1.0",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"deploy:staging": "turbo run deploy:staging --parallel",
"deploy:production": "turbo run deploy:production --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"check:updates": "turbo run check:updates",
"check:updates:u": "turbo run check:updates:u",
"package": "turbo run package"
},
"devDependencies": {
"@serverless/typescript": "^3.38.0",
"@types/aws-lambda": "^8.10.133",
"@types/node": "^20.11.17",
"@vitest/coverage-v8": "^1.2.2",
"esbuild": "^0.20.0",
"eslint-config-custom": "workspace:*",
"prettier": "latest",
"serverless": "^3.38.0",
"serverless-esbuild": "^1.51.0",
"serverless-offline": "^13.3.3",
"ts-node": "^10.9.2",
"turbo": "^1.12.3",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=8",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"packageManager": "[email protected]"
}