-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.28 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
{
"name": "@aws-samples/asset-prediction-sagemaker-pipelines-example",
"version": "1.0.0",
"description": "AWS Asset Prediction Sagemaker Pipelines Examples",
"repository": {
"type": "git",
"url": "https://github.com/aws-samples/asset-prediction-sagemaker-pipelines-example"
},
"author": {
"name": "Greg Varga - Amazon Web Services - ASEAN Prototyping",
"email": "[email protected]"
},
"contributors": [
"Greg Varga <[email protected]>",
"Boris Banushev <[email protected]>",
"Jeremy Jonas <[email protected]>"
],
"license": "MIT-0",
"private": true,
"workspaces": [
"packages/@config/*",
"packages/@infra/*",
"packages/@infra/**/@lambda",
"apps/infra",
"apps/website"
],
"scripts": {
"init-project": "yarn install && husky install",
"build": "yarn build:packages && yarn build:lambdas",
"build:all": "yarn build && yarn build:web",
"build:lambdas": "lerna run --stream 'build' --scope @lambda/*",
"build:config-packages": "lerna run --stream 'build' --scope @config/*",
"build:packages": "lerna run --stream 'build' --no-private --ignore @lambda/*",
"build:web": "cd apps/website && yarn build",
"clean:packages": "lerna run --stream 'clean' --no-private --ignore @lambda/*",
"clean:deep": "yarn clean:packages && (find . -type d -name node_modules -exec rm -rf {} \\; &> /dev/null) || exit 0;",
"create-package": "HYGEN_TMPLS=\"./packages/@config/hygen/src/package-template\" hygen package new",
"license:disclaimer": "yarn licenses --prod --silent --no-progress generate-disclaimer > ./THIRDPARTY_LICENSES.txt",
"lint": "eslint '**/*.{ts,tsx,js,jsx}'",
"lint:fix": "yarn lint --fix",
"test": "lerna run --stream 'test' --no-private -- --silent --runInBand",
"tsc": "tsc"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"resolutions": {
"ansi-html": "^0.0.9",
"browserslist": "^4.21.5",
"d3-color": "^3.1.0",
"ejs": "^3.1.7",
"eslint": "^7.3.1",
"fast-xml-parser": "^4.2.7",
"glob-parent": "^6.0.2",
"immer": "^9.0.6",
"jest": "^27.4.3",
"json5": "^2.2.3",
"loader-utils": "^2.0.3",
"minimatch": "^3.0.5",
"minimist": "^1.2.8",
"node-forge": "^1.3.0",
"nth-check": "^2.1.1",
"parse-path": "^5.0.0",
"parse-url": "^8.1.0",
"request": "^2.88.2",
"semver": "^7.5.4",
"shell-quote": "^1.7.3",
"shelljs": "^0.8.5",
"ts-jest": "^27.1.0",
"xml2js": "^0.6.2",
"@typescript-eslint/typescript-estree": "^5.10.0",
"@types/react": "^17.0.2"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^5.10.0",
"aws-cdk-lib": "^2.0.0",
"cdk-constants": "^3.0.3",
"cdk-iam-actions": "^1.0.0",
"constructs": "^10.0.0",
"find-up": "^5.0.0",
"immer": "^9.0.6",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"shell-quote": "^1.7.3"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"eslint": "^7.3.1",
"husky": "^7.0.0",
"hygen": "^6.1.0",
"jest": "^27.4.3",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"node-notifier": "^10.0.0",
"prettier": "^2.5.0",
"ts-jest": "^27.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}