-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.09 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@ago-dev/nx-aws-cdk-v2",
"description": "nx aws-cdk-v2 plugin",
"author": {
"name": "Adrian Görisch",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/ago-devlab/nx-plugins",
"repository": {
"type": "git",
"url": "git+https://github.com/adrian-goe/nx-aws-cdk-v2"
},
"scripts": {
"nx": "nx",
"lint-stage": "lint-staged",
"commitlint": "commitlint",
"test": "nx test aws-cdk-v2",
"lint": "nx lint aws-cdk-v2",
"format": "nx format:write",
"e2e:aws-cdk": "nx e2e aws-cdk-v2-e2e",
"build:aws-cdk": "nx build aws-cdk-v2",
"link:aws-cdk": "cd dist/packages/aws-cdk-v2 && npm link"
},
"private": true,
"dependencies": {
"aws-cdk": "2.167.1",
"aws-cdk-lib": "2.167.1",
"constructs": "10.4.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/architect": "0.1802.12",
"@angular-devkit/core": "18.2.12",
"@angular-devkit/schematics": "18.2.12",
"@commitlint/cli": "19.6.0",
"@swc-node/register": "1.10.9",
"@swc/core": "1.9.2",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-cdk": "1.8.0",
"eslint-plugin-json": "4.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "16.7.4",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.6.3",
"@nx/devkit": "16.7.4",
"@nx/workspace": "16.7.4",
"@nx/js": "16.7.4",
"@nx/linter": "16.7.4",
"@nx/eslint-plugin": "16.7.4",
"@nx/plugin": "16.7.4",
"@nx/jest": "16.7.4",
"@nx/node": "16.7.4"
},
"files": [
"src/*",
"cli/*",
"lib/*",
"peers/*",
"scripts/*.js",
"stubs/*.stub.js",
"nesting/*",
"types/**/*",
"*.d.ts",
"*.css",
"*.js"
],
"lint-staged": {
"*.{js,json,css,scss,md,ts,html,graphql}": [
"npm run format --uncommitted"
]
}
}