-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 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
{
"name": "omics-webapp",
"version": "1.0.0",
"description": "",
"main": "bin/infra.js",
"scripts": {
"build": "tsc ",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"prepare": "husky install",
"deployInfra": "cdk deploy --app 'npx ts-node --prefer-ts-exts bin/infra.ts'",
"deployFrontend": "cdk deploy --app 'npx ts-node --prefer-ts-exts bin/frontend.ts'",
"deployAll": "npm run deployInfra && npm run deployFrontend",
"destroyInfra": "cdk destroy --app 'npx ts-node --prefer-ts-exts bin/infra.ts' --force",
"destroyFrontend": "cdk destroy --app 'npx ts-node --prefer-ts-exts bin/frontend.ts' --force",
"destroyAll": "npm run destroyFrontend && npm run destroyInfra"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test "
}
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": "eslint --cache",
"*.{js,ts,tsx,jsx,md}": "prettier --write --ignore-unknown"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-ssm": "^3.490.0",
"@aws-sdk/credential-providers": "^3.490.0",
"aws-cdk-lib": "^2.80.0",
"cdk-nag": "^2.23.5",
"constructs": "^10.0.0",
"esbuild": "^0.17.8",
"fs": "^0.0.1-security",
"lodash": "^4.17.21",
"path": "^0.12.7"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.110",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"aws-cdk": "^2.70.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.0",
"jest": "^29.4.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
}
}