-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
79 lines (79 loc) · 2.32 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
{
"name": "smithy-typescript",
"private": true,
"version": "1.0.0",
"description": "Smithy TypeScript packages",
"main": "index.js",
"scripts": {
"clean": "turbo run clean --force --parallel",
"build": "turbo run build",
"test": "turbo run test",
"test:integration": "yarn build-test-packages && turbo run test:integration",
"test:protocols": "make generate-protocol-tests test-protocols",
"lint": "turbo run lint",
"lint-fix": "turbo run lint -- --fix",
"lint:pkgJson": "yarn lint:dependencies",
"lint:dependencies": "node scripts/check-dependencies.js",
"lint:versions": "node scripts/runtime-dep-version-check.js",
"format": "turbo run format --parallel",
"stage-release": "turbo run stage-release",
"extract:docs": "mkdir -p api-extractor-packages && turbo run extract:docs",
"release": "yarn changeset publish",
"build-test-packages": "./gradlew clean build && node ./scripts/build-generated-test-packages",
"g:tsc": "cd $INIT_CWD && tsc",
"g:vitest": "cd $INIT_CWD && vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/awslabs/smithy-typescript/tree/main"
},
"author": "AWS Smithy Team",
"license": "UNLICENSED",
"dependencies": {
"@changesets/cli": "^2.27.5",
"glob": "^7.1.6",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@microsoft/api-extractor": "7.34.4",
"@tsconfig/recommended": "1.0.2",
"@types/jest": "28.1.3",
"@types/jsdom": "20.0.1",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"esbuild": "0.19.11",
"eslint": "8.57.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tsdoc": "0.2.17",
"get-port": "^7.1.0",
"happy-dom": "14.12.3",
"husky": "^4.2.3",
"jest": "29.7.0",
"prettier": "3.2.5",
"puppeteer": "^19.2.0",
"ts-jest": "29.1.2",
"turbo": "latest",
"typescript": "~5.2.2",
"vite": "4.5.5",
"vitest": "0.34.6",
"webpack": "5.91.0",
"yarn": "1.22.22"
},
"overrides": {
"vite": "4.5.5"
},
"resolutions": {
"vite": "4.5.5"
},
"workspaces": [
"packages/*",
"smithy-typescript-ssdk-libs/*",
"private/*"
],
"packageManager": "[email protected]",
"husky": {
"hooks": {
"pre-commit": "yarn lint:dependencies && yarn lint:versions"
}
}
}