-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
121 lines (121 loc) · 4.16 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "nx-aws",
"version": "0.15.2",
"description": "AWS plugins for nx",
"keywords": [
"AWS",
"SAM",
"Serverless",
"Angular CLI",
"Workspace",
"Nx",
"Monorepo",
"s3"
],
"scripts": {
"nx": "nx",
"ts-node": "TS_NODE_PROJECT=tsconfig.node.json cross-dotenv ts-node -r tsconfig-paths/register",
"start": "nx serve",
"build": "nx run-many --target=build --all --exclude=workspace",
"pack:all": "nx run-many --target=pack --all --exclude=workspace",
"semver:dryrun": "yarn semver --dry-run",
"semver": "nx run workspace:semver",
"publish:latest": "NPM_TAG=latest nx run-many --target=publish --all",
"publish:next": "NPM_TAG=next nx run-many --target=publish --all",
"test": "nx run-many --target=test --all",
"lint": "nx workspace-lint && nx run-many --target=lint --all",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator"
},
"author": "studds@fastmail.com",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.252.0",
"@aws-sdk/client-lambda": "^3.252.0",
"@types/aws-lambda": "^8.10.109",
"cloudform-types": "^7.3.0",
"cloudformation-js-yaml-schema": "^0.4.2",
"cross-spawn": "^7.0.3",
"cross-zip": "^4.0.0",
"js-yaml": "^4.1.0",
"mkdirp": "^2.1.3",
"rxjs": "6",
"source-map-support": "^0.5.21",
"strip-json-comments": "^5.0.0",
"ts-essentials": "^9.3.0",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@angular-devkit/architect": "0.1501.1",
"@angular-devkit/build-angular": "15.1.1",
"@angular-devkit/core": "15.1.1",
"@angular-devkit/schematics": "15.1.1",
"@angular/compiler": "15.1.0",
"@angular/compiler-cli": "15.1.0",
"@babel/core": "^7.20.12",
"@jscutlery/semver": "2.29.3",
"@nrwl/cli": "15.5.2",
"@nrwl/devkit": "15.5.2",
"@nrwl/eslint-plugin-nx": "15.5.2",
"@nrwl/jest": "15.5.2",
"@nrwl/js": "15.5.2",
"@nrwl/node": "15.5.2",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/nx-plugin": "15.5.2",
"@nrwl/webpack": "15.5.2",
"@nrwl/workspace": "15.5.2",
"@swc-node/register": "^1.5.5",
"@swc/core": "^1.3.27",
"@types/cpx": "^1.5.1",
"@types/cross-spawn": "^6.0.2",
"@types/cross-zip": "^4.0.0",
"@types/jest": "28.1.8",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.2",
"@types/node": "18.11.18",
"@types/webpack": "5.28.0",
"@types/webpack-dev-server": "^4.7.2",
"@types/yargs": "^17.0.19",
"@typescript-eslint/eslint-plugin": "~5.48.2",
"@typescript-eslint/parser": "~5.48.2",
"dotenv": "16.0.3",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "28.1.3",
"npm-run-all": "^4.1.5",
"nx": "15.5.2",
"prettier": "2.8.3",
"prettier-eslint": "^15.0.1",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.4.1",
"typescript": "4.8.4",
"webpack": "^5.75.0",
"yargs": "^17.6.2"
},
"repository": "https://github.com/studds/nx-aws",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.10",
"node": ">= 14.6.1"
}
}