forked from wakeuplabs-io/react-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.45 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.45 KB
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
{
"name": "react-monorepo-template",
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "concurrently --kill-others \"npm -w api run dev\" \"npm -w ui run dev\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"deploy:app:staging": "sst install && sst deploy --stage=staging --print-logs",
"deploy:app:production": "sst install && sst deploy --stage=production"
},
"workspaces": [
"packages/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "8.10.147",
"@typescript-eslint/eslint-plugin": "8.26.1",
"@typescript-eslint/parser": "8.26.1",
"concurrently": "9.1.2",
"eslint": "9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"prettier": "^3.5.3",
"serverless": "4.8.0",
"serverless-plugin-common-excludes": "4.0.0",
"serverless-plugin-include-dependencies": "6.1.1",
"serverless-s3-sync": "3.4.0"
},
"dependencies": {
"@aws-sdk/client-ec2": "3.766.0",
"dotenv": "16.4.7",
"sst": "3.9.37",
"zod": "3.24.2"
}
}