-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) Β· 2.09 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "purple-stack",
"version": "3.0.0",
"private": true,
"type": "module",
"engines": {
"node": "20.x",
"pnpm": ">=9.6 <10"
},
"scripts": {
"env": "env-cmd -f ./.env bash -c \"aws sts get-caller-identity --profile \\$AWS_PROFILE --no-cli-pager >/dev/null 2>&1 || aws sso login --profile \\$AWS_PROFILE\" && env-cmd -f ./.env",
"prepare": "husky install",
"lint": "eslint 'services' 'packages' 'constructs' --ext .ts,.tsx,.js,.jsx,.cjs,.mjs && prettier -c \"**/*.{json,html}\"",
"lint:fix": "eslint 'services' 'packages' 'constructs' --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --fix && prettier --write \"**/*.{json,html}\"",
"dev": "pnpm run env -- sst dev",
"build": "pnpm run env -- sst build",
"deploy": "pnpm run env -- sst deploy",
"remove": "pnpm run env -- sst remove",
"sst-types": "pnpm run env -- sst types",
"console": "pnpm run env -- sst console",
"secrets": "pnpm run env -- sst secrets",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:all": "time pnpm run typecheck && time pnpm run -r --report-summary typecheck"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@microsoft/eslint-plugin-sdl": "^0.2.2",
"@purple/serverless-git-branch-stage-plugin": "^1.3.2",
"@tsconfig/node20": "^20.1.4",
"@types/node": "catalog:",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.5.0",
"aws-cdk-lib": "2.124.0",
"constructs": "10.3.0",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^2.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"semantic-release": "^23.0.8",
"sst": "2.40.6",
"typescript": "catalog:",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}