-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
{
"name": "lisa",
"version": "3.1.0",
"bin": {
"lisa": "bin/lisa.js"
},
"scripts": {
"build": "tsc && cd ./cdk_runner_lambda && npm run build",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"prepare": "husky install",
"migrate-properties": "node ./scripts/migrate-properties.mjs",
"postinstall": "(cd lib/user-interface/react && npm install) && (cd lib/docs && npm install)",
"postbuild": "(cd lib/user-interface/react && npm build) && (cd lib/docs && npm build)",
"generateSchemaDocs": "npx zod2md -c ./lib/zod2md.config.ts"
},
"devDependencies": {
"@aws-cdk/aws-lambda-python-alpha": "2.125.0-alpha.0",
"@aws-sdk/client-iam": "^3.490.0",
"@cdklabs/cdk-enterprise-iac": "^0.0.512",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.17.12",
"@types/node": "20.5.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.6.0",
"aws-cdk": "2.125.0",
"depcheck": "^1.4.7",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^8.0.3",
"jest": "^29.6.3",
"lint-staged": "^15.2.10",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.1.6",
"zod2md": "^0.1.4"
},
"dependencies": {
"aws-cdk-lib": "2.125.0",
"cdk-nag": "^2.27.198",
"constructs": "^10.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"source-map-support": "^0.5.21",
"zod": "^3.22.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"description": "![LISA Architecture](./assets/LisaApi.drawio.png)",
"main": "jest.config.js",
"directories": {
"lib": "lib",
"test": "test"
},
"author": "",
"license": "Apache-2.0"
}