forked from smithy-lang/smithy-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.26 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
{
"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",
"lint": "turbo run lint",
"lint-fix": "turbo run lint -- --fix",
"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:jest": "cd $INIT_CWD && jest",
"g:tsc": "cd $INIT_CWD && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/awslabs/smithy-typescript/tree/main"
},
"author": "AWS Smithy Team",
"license": "UNLICENSED",
"dependencies": {
"@changesets/cli": "^2.26.1",
"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",
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.30.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tsdoc": "0.2.17",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"karma": "6.4.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-env-preprocessor": "0.1.1",
"karma-firefox-launcher": "2.1.2",
"karma-jasmine": "5.1.0",
"karma-mocha": "2.0.1",
"karma-sourcemap-loader": "0.3.8",
"karma-typescript": "5.5.3",
"karma-webpack": "5.0.0",
"prettier": "2.2.1",
"puppeteer": "^19.2.0",
"ts-jest": "28.0.5",
"turbo": "latest",
"typescript": "~4.9.5",
"webpack": "5.76.0",
"webpack-cli": "4.10.0",
"yarn": "1.22.10"
},
"workspaces": [
"packages/*",
"smithy-typescript-ssdk-libs/*",
"private/*"
],
"packageManager": "[email protected]"
}