-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
165 lines (165 loc) · 5.94 KB
/
package.json
File metadata and controls
165 lines (165 loc) · 5.94 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "aws-amplify-monorepo",
"private": true,
"version": "0.1.30",
"description": "",
"scripts": {
"setup-dev": "yarn && yarn bootstrap && yarn link-all && yarn build",
"bootstrap": "lerna bootstrap",
"test": "yarn test:no-datastore && yarn test:datastore && yarn test:license && yarn test:github-actions && yarn test:tsc-compliance",
"test:no-datastore": "lerna run test --stream --ignore @aws-amplify/datastore",
"test:datastore": "lerna run test --stream --scope @aws-amplify/datastore",
"test:size": "lerna run test:size --no-bail",
"test:duplicates": "./scripts/duplicates-yarn.sh",
"test:license": "license-check-and-add check -f license_config.json",
"test:github-actions": "node ./scripts/test-github-actions.js",
"test:tsc-compliance": "yarn workspace tsc-compliance-test test:compliance",
"docs": "typedoc",
"docs:references": "typedoc --options typedoc.references.json",
"build": "lerna run build --stream && yarn test:duplicates",
"build:watch": "concurrently 'lerna run build:watch --parallel' --raw",
"build:client-types": "cd scripts/dts-bundler && yarn && yarn run build",
"clean": "lerna run clean --parallel",
"clean:size": "lerna run clean:size --parallel",
"format": "lerna run format",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"lint:license": "license-check-and-add add -f license_config.json",
"link-all": "yarn unlink-all && lerna exec --no-bail --parallel yarn link",
"unlink-all": "lerna exec --no-bail --parallel -- yarn unlink; exit 0",
"publish:latest": "changeset publish",
"publish:unstable": "cp .github/changeset-presets/bump-all-packages.md .changeset/ && changeset version --snapshot unstable-$(git rev-parse --short=7 HEAD) && changeset publish --tag unstable --no-git-tag",
"publish:preid": "./scripts/preid-env-vars-exist.sh && cp .github/changeset-presets/bump-all-packages.md .changeset/ && changeset version --snapshot \"${PREID}\"-$(git rev-parse --short=7 HEAD) && changeset publish --tag \"${PREID}\" --no-git-tag",
"publish:verdaccio": "yarn publish:unstable",
"generate-metadata": "git rev-parse --short HEAD > packages/core/metadata && git commit -am 'chore(release): Set core metadata [skip release]'",
"ts-coverage": "lerna run ts-coverage",
"prepare": "husky && ./scripts/setup-git-secrets.sh && ./scripts/set-preid-versions.sh"
},
"workspaces": {
"packages": [
"packages/core",
"packages/auth",
"packages/analytics",
"packages/predictions",
"packages/storage",
"packages/adapter-nextjs",
"packages/geo",
"packages/api-rest",
"packages/api-graphql",
"packages/api",
"packages/datastore",
"packages/datastore-storage-adapter",
"packages/interactions",
"packages/pubsub",
"packages/notifications",
"packages/rtn-push-notification",
"packages/aws-amplify",
"packages/rtn-web-browser",
"packages/react-native",
"packages/react-native/example",
"packages/rtn-passkeys",
"packages/rtn-passkeys/example",
"scripts/tsc-compliance-test"
],
"nohoist": [
"**/@types/react-native",
"**/@types/react-native/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-js.git"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws-amplify/amplify-js/issues"
},
"homepage": "https://aws-amplify.github.io/",
"devDependencies": {
"@babel/cli": "7.17.0",
"@babel/core": "7.17.2",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.27.1",
"@eslint/compat": "^1.2.0",
"@lerna/legacy-package-management": "^8.2.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-typescript": "^11.1.6",
"@size-limit/dual-publish": "^8.1.0",
"@size-limit/file": "^8.1.0",
"@size-limit/webpack": "^8.1.0",
"@size-limit/webpack-why": "^8.1.0",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/jest": "^29.5.8",
"@types/lodash": "4.14.182",
"@types/node": "^8.9.5",
"@types/puppeteer": "1.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"babel-loader": "^8.3.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"expect": "^29.7.0",
"glob": "^10.3.10",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-loader": "^0.5.7",
"lerna": "^8.2.1",
"license-check-and-add": "^4.0.5",
"lint-staged": "^15.2.2",
"mkdirp": "^3.0.1",
"prettier": "^3.2.5",
"rimraf": "^2.6.2",
"rollup": "^4.9.6",
"size-limit": "^8.1.0",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.3",
"typedoc": "0.25.8",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.3.0",
"typescript-coverage-report": "^0.6.4",
"uuid-validate": "^0.0.3",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0"
},
"resolutions": {
"@react-native-community/cli": "^18.0.1",
"fast-xml-parser": "^5.3.6",
"@types/babel__traverse": "7.20.0",
"path-scurry": "1.10.0",
"**/glob/minipass": "6.0.2",
"nx": "16.7.0",
"xml2js": "0.5.0",
"tar": "6.2.1",
"**/cross-spawn": "7.0.5",
"**/brace-expansion": "1.1.12",
"**/on-headers": "1.1.0",
"**/form-data": "4.0.4",
"tmp": "^0.2.4",
"qs": "^6.14.1",
"js-yaml": "4.1.1",
"serialize-javascript": "^7.0.3"
},
"overrides": {
"js-yaml": "4.1.1",
"tar": "6.2.1",
"cross-spawn": "7.0.5",
"brace-expansion": "1.1.12",
"tmp": "^0.2.4"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}