-
Notifications
You must be signed in to change notification settings - Fork 820
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.59 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.59 KB
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
{
"name": "@aws-amplify/amplify-cli-core",
"version": "4.4.0",
"description": "Amplify CLI Core",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-cli.git",
"directory": "packages/amplify-cli-core"
},
"publishConfig": {
"access": "public"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"graphql",
"appsync",
"aws"
],
"scripts": {
"test": "jest --logHeapUsage",
"test-ci": "jest --ci -i",
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf lib tsconfig.tsbuildinfo node_modules",
"extract-api": "ts-node ../../scripts/extract-api.ts"
},
"dependencies": {
"@aws-amplify/amplify-cli-logger": "1.3.8",
"@aws-amplify/amplify-function-plugin-interface": "1.12.1",
"@aws-amplify/amplify-prompts": "2.8.6",
"@aws-amplify/graphql-transformer-interfaces": "^3.12.0",
"@aws-sdk/util-arn-parser": "^3.310.0",
"@yarnpkg/lockfile": "^1.1.0",
"ajv": "^6.12.6",
"aws-cdk-lib": "~2.184.0",
"chalk": "^4.1.1",
"ci-info": "^3.8.0",
"cli-table3": "^0.6.0",
"cloudform-types": "^4.2.0",
"colors": "1.4.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.7",
"execa": "^5.1.1",
"fs-extra": "^8.1.0",
"globby": "^11.0.3",
"hjson": "^3.2.1",
"inquirer": "^7.3.3",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"open": "^8.4.0",
"ora": "^4.0.3",
"proxy-agent": "^6.3.0",
"semver": "^7.5.4",
"typescript-json-schema": "~0.52.0",
"which": "^2.0.2",
"yaml": "^2.2.2",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@aws-amplify/amplify-function-plugin-interface": "1.10.3",
"@types/archiver": "^5.3.1",
"@types/ejs": "^3.1.1",
"@types/fs-extra": "^8.0.1",
"@types/hjson": "^2.4.2",
"@types/json-schema": "^7.0.5",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.6",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.0.0",
"@types/yarnpkg__lockfile": "^1.1.5",
"jest": "^29.7.0",
"nock": "^13.5.0",
"rimraf": "^6.0.1",
"strip-ansi": "^6.0.0",
"uuid": "^8.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx,js,jsx}",
"!src/__tests__/"
],
"testRegex": "(src/__tests__/.*.test.ts)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true
},
"berry": {
"plugins": [
"@yarn/plugin-typescript"
]
}
}