-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.09 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.09 KB
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": "github@ago-dev.org"
},
"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": "3.0.0",
"aws-cdk-lib": "2.243.0",
"constructs": "10.5.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/architect": "0.2102.2",
"@angular-devkit/core": "21.2.2",
"@angular-devkit/schematics": "21.2.2",
"@commitlint/cli": "20.5.0",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.18",
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"dotenv": "17.3.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-cdk": "1.8.0",
"eslint-plugin-json": "4.0.1",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"nx": "16.7.4",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.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"
]
}
}