-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
96 lines (96 loc) · 2.68 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
{
"name": "nx-aws",
"version": "0.0.0",
"license": "MIT",
"author": "Bojan Bratuz",
"keywords": [
"AWS",
"S3",
"Tasks",
"Runner",
"Cache",
"Workspace",
"Nrwl",
"Nx",
"Monorepo"
],
"engines": {
"node": ">=10.22.0",
"npm": ">=6.14.6",
"yarn": ">=1.19.2"
},
"repository": {
"type": "git",
"url": "https://github.com/bojanbass/nx-aws"
},
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"build:actions": "yarn tsc --project ./.github/actions/tsconfig.json",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"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",
"nx:migrate": "YARN_NODE_LINKER='node-modules' nx migrate latest",
"nx:migrate:run-migrations": "YARN_NODE_LINKER='node-modules' nx migrate --run-migrations --createCommits",
"upgrade:interactive": "yarn upgrade-interactive --latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator"
},
"peerDependencies": {
"@nx/workspace": ">=16.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "3.637.0",
"@aws-sdk/credential-providers": "3.637.0",
"@aws-sdk/lib-storage": "3.637.0",
"@aws-sdk/property-provider": "3.374.0",
"@swc/helpers": "~0.5.12",
"dotenv": "16.4.5",
"tar": "7.4.3"
},
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@aws-sdk/util-stream-node": "3.374.0",
"@nx/devkit": "16.2.2",
"@nx/eslint-plugin": "16.2.2",
"@nx/jest": "16.2.2",
"@nx/js": "16.2.2",
"@nx/plugin": "16.2.2",
"@nx/workspace": "16.2.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "29.4.4",
"@types/node": "16.11.7",
"@types/tar": "6.1.13",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"aws-sdk-client-mock": "^4.0.1",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jsonc-eslint-parser": "^2.4.0",
"nx": "16.2.2",
"nx-cloud": "16.2.0",
"prettier": "2.8.3",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tslib": "2.3.1",
"typescript": "5.0.4"
},
"packageManager": "[email protected]"
}