-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.93 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.93 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
{
"name": "amplify-data-monorepo",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-data.git"
},
"private": true,
"workspaces": [
"packages/*",
"packages/e2e-tests/exports-test",
"packages/e2e-tests/node",
"packages/e2e-tests/sandbox",
"packages/e2e-tests/vite",
"packages/e2e-tests/webpack",
"examples/*"
],
"type": "module",
"scripts": {
"baseline:benchmarks": "yarn --cwd ./packages/benches baseline:all",
"build": "turbo run build",
"build:clean": "turbo run clean && rimraf node_modules && yarn delete-cache",
"check": "yarn build && yarn test && yarn lint && yarn check:api && yarn 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-lockfile.ts",
"clean": "turbo run clean",
"clean:npm-proxy": "yarn 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": "yarn --cwd ./packages/e2e-tests/exports-test e2e",
"e2e": "yarn e2e-node && yarn e2e-sandbox",
"e2e:clean": "yarn e2e-node:clean && yarn e2e-sandbox:clean",
"e2e-node": "yarn --cwd ./packages/e2e-tests/node e2e-node",
"e2e-node:clean": "yarn --cwd ./packages/e2e-tests/node clean",
"e2e-node:install": "yarn --cwd ./packages/e2e-tests/node install:no-lock",
"e2e-node:test": "yarn --cwd ./packages/e2e-tests/node test",
"e2e-sandbox": "yarn --cwd ./packages/e2e-tests/sandbox e2e-sandbox",
"e2e-sandbox:clean": "yarn --cwd ./packages/e2e-tests/sandbox clean",
"e2e-sandbox:install": "yarn --cwd ./packages/e2e-tests/sandbox install:no-lock",
"e2e-sandbox:test": "yarn --cwd ./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 --filter='!./packages/e2e-tests/*' && yarn test:scripts && yarn e2e-exports",
"test:scripts": "yarn jest scripts/",
"ci:test": "./scripts/run_test.sh",
"turbo": "turbo",
"typedoc": "typedoc",
"vend": "yarn stop:npm-proxy && yarn start:npm-proxy && npm run publish:local"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@aws-amplify/adapter-nextjs": "^1.7.1",
"@aws-sdk/types": "^3.609.0",
"@changesets/cli": "^2.29.8",
"@microsoft/api-documenter": "^7.29.5",
"@microsoft/api-extractor": "^7.57.5",
"@tsd/typescript": "^5.1.6",
"@types/jest": "29.5.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^18.15.11",
"aws-amplify": "^6.6.5",
"eslint": "^9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"execa": "^9.2.0",
"glob": "^11.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-tsd": "^0.2.2",
"jsdom": "^29.0.1",
"next": "^16.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.4.6",
"tsx": "^4.8.2",
"turbo": "^1.10.14",
"typedoc": "^0.27.6",
"typescript": "^5.1.6",
"typescript-eslint": "^8.57.1",
"verdaccio": "^6.2.2"
},
"packageManager": "yarn@4.13.0",
"resolutions": {
"@verdaccio/core/ajv": "8.18.0",
"eslint": "9.27.0",
"fast-xml-parser": "^5.5.8",
"immutable": "^5.1.5",
"lodash": "^4.18.1",
"minimatch": "^10.2.4",
"test-exclude": "^8.0.0",
"esbuild": "^0.25.0",
"handlebars": "^4.7.9",
"picomatch": "^4.0.4",
"yaml": "^1.10.3"
}
}