-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
59
60
61
62
{
"name": "@vardario/cdk-spa-app",
"version": "0.0.0-development",
"description": "CDK construct to deploy a SPA app to AWS",
"license": "MIT",
"author": "Sahin Vardar",
"repository": {
"type": "git",
"url": "[email protected]:vardario/cdk-spa-app.git"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc --build",
"build:example": "pnpm --filter react-app build && pnpm --filter svelte-app build",
"cdk-deploy": "pnpm build:example && pnpm --filter deploy cdk-deploy",
"cdk-synth": "pnpm build:example && pnpm --filter deploy cdk-synth",
"format": "prettier --plugin-search-dir . --write . && prettier-package-json --write && eslint --fix .",
"prepare": "husky install",
"repo-clean": "git clean -xdf -e .env",
"semantic-release": "semantic-release",
"test": "vitest run",
"watch": "tsc --build --watch"
},
"peerDependencies": {
"aws-cdk-lib": "^2.171.x",
"constructs": "^10.x"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"aws-cdk-lib": "^2.171.0",
"constructs": "^10.3.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prettier-package-json": "^2.8.0",
"semantic-release": "^22.0.8",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"package.json": "prettier-package-json --write"
},
"packageManager": "[email protected]"
}