-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.63 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
{
"name": "amplify-data-monorepo",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-data.git"
},
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"type": "module",
"scripts": {
"baseline:benchmarks": "npm run --prefix ./packages/benches baseline:all",
"build": "turbo run build",
"build:clean": "turbo run clean && rimraf node_modules && npm run delete-cache",
"check": "npm run build && npm run test && npm run lint && npm run check:api && npm run check:type-perf",
"check:api": "turbo run check:api",
"check:docs-site-coverage": "tsx scripts/docs-site-coverage/run.ts",
"check:type-perf": "tsx scripts/check-ts-benches.ts",
"check:package-lock": "tsx scripts/check-package-lock.ts",
"clean": "turbo run clean",
"clean:npm-proxy": "npm run stop:npm-proxy && rimraf verdaccio-cache verdaccio-logs.txt",
"delete-cache": "find . -type d \\( -name .turbo -o -name .rollup.cache \\) -exec rm -rf {} +",
"docs": "turbo run docs",
"e2e-exports": "npm run --prefix ./packages/e2e-tests/exports-test e2e",
"e2e": "npm run e2e-node && npm run e2e-sandbox",
"e2e:clean": "npm run e2e-node:clean && npm run e2e-sandbox:clean",
"e2e-node": "npm run --prefix ./packages/e2e-tests/node e2e-node",
"e2e-node:clean": "npm run --prefix ./packages/e2e-tests/node clean",
"e2e-node:install": "npm run --prefix ./packages/e2e-tests/node install:no-lock",
"e2e-node:test": "npm run --prefix ./packages/e2e-tests/node test",
"e2e-sandbox": "npm run --prefix ./packages/e2e-tests/sandbox e2e-sandbox",
"e2e-sandbox:clean": "npm run --prefix ./packages/e2e-tests/sandbox clean",
"e2e-sandbox:install": "npm run --prefix ./packages/e2e-tests/sandbox install:no-lock",
"e2e-sandbox:test": "npm run --prefix ./packages/e2e-tests/sandbox test",
"lint": "turbo run lint",
"prepare": "husky",
"publish:release": "changeset version && changeset publish",
"publish:preid": "changeset version --snapshot ${PREID_PREFIX} && changeset publish --tag ${PREID_PREFIX}",
"publish:local": "tsx scripts/publish_local.ts",
"start:npm-proxy": "tsx scripts/start_npm_proxy.ts",
"stop:npm-proxy": "tsx scripts/stop_npm_proxy.ts",
"test": "turbo run test && npm run test:scripts && npm run e2e-exports",
"test:scripts": "npx jest scripts/",
"turbo": "turbo",
"vend": "npm run start:npm-proxy && npm run publish:local"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@aws-amplify/adapter-nextjs": "^1.2.22",
"@aws-sdk/types": "^3.609.0",
"@changesets/cli": "^2.27.10",
"@microsoft/api-documenter": "^7.23.37",
"@microsoft/api-extractor": "^7.42.3",
"@tsd/typescript": "^5.1.6",
"@types/jest": "29.5.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^18.15.11",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"aws-amplify": "^6.6.5",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"execa": "^9.2.0",
"glob": "^10.3.10",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-tsd": "^0.2.2",
"jsdom": "^25.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"tsx": "^4.8.2",
"turbo": "^1.10.14",
"typescript": "^5.1.6",
"verdaccio": "^6.0.2"
},
"resolutions": {
"cookie": "^0.7.2"
},
"overrides": {
"cookie": "^0.7.2"
}
}