This repository was archived by the owner on Dec 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.97 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.97 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "buttonize-docs",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"env": "run-script-os",
"env:windows": "env-cmd -f .env-cmd cmd /C \"ssocreds -p %AWS_PROFILE%\" && env-cmd -f .env-cmd",
"env:default": "env-cmd -f .env-cmd bash -c \"ssocreds -p \\$AWS_PROFILE\" && env-cmd -f .env-cmd",
"dev:sst": "npm run env -- sst dev",
"build": "npm run env -- sst build",
"deploy": "npm run env -- sst deploy",
"remove": "npm run env -- sst remove",
"console": "npm run env -- sst console",
"typecheck": "tsc --noEmit",
"test": "sst bind -- vitest run",
"lint": "eslint 'stacks' 'docs' --quiet --ext .ts,.tsx,.js,.mjs,.cjs,.jsx,.json && prettier -c \"{stacks,docs}/**/*.{md,mdx,html,astro}\"",
"lint:fix": "eslint 'stacks' 'docs' --quiet --ext .ts,.tsx,.js,.mjs,.cjs,.jsx,.json --fix && prettier --write \"{stacks,docs}/**/*.{md,mdx,html,astro}\""
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "eslint --quiet --fix",
"*.{md,mdx,html,astro}": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@purple/serverless-git-branch-stage-plugin": "^1.3.2",
"@stylistic/eslint-plugin-js": "^1.5.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"aws-cdk-lib": "2.124.0",
"env-cmd": "^10.1.0",
"eslint": "8.56.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "8.0.1",
"lint-staged": "11.2.6",
"prettier": "^3.2.2",
"prettier-plugin-astro": "^0.12.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"run-script-os": "^1.1.6",
"sst": "2.42.0",
"typescript": "^5.3.3",
"vitest": "^0.25.1"
},
"workspaces": [
"services",
"docs"
]
}