-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "talis-cdk-constructs",
"version": "0.1.0",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"src/**/*.js",
"src/lambda/api/authorizer.ts",
"src/lambda/api/authorizer.d.ts"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"unit-test": "npm run build && npm run jest-unit-test",
"infra-test": "npm run build && npm run jest-infra-test",
"integration-test": "npm run build && npm run jest-integration-test",
"jest-unit-test": "jest test/unit/",
"jest-infra-test": "jest test/infra/",
"jest-integration-test": "jest test/integration/",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint . --ext .ts",
"lint": "npm run lint:prettier && npm run lint:eslint",
"format:prettier": "prettier --write .",
"format": "npm run format:prettier",
"prepare": "husky install && npm run build"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"husky": "^8.0.3",
"semantic-release": "^18.0.1",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"@types/node": "20.5.9",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"aws-cdk": "2.162.0",
"aws-sdk": "^2.1363.0",
"esbuild": "^0.19.3",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"aws-cdk-lib": "2.162.0",
"axios": "^1.5.0",
"constructs": "^10.0.0",
"eslint": "^8.49.0",
"prettier": "^3.0.3",
"source-map-support": "^0.5.21",
"talis-node": "github:talis/talis-node#v0.2.1",
"uuid": "^9.0.0"
}
}