-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
114 lines (114 loc) · 4.65 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "amplify-backend",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"build": "tsc --build packages/* scripts",
"check:api": "npm run update:api && tsx scripts/check_api_extract.ts",
"check:dependencies": "tsx scripts/check_dependencies.ts",
"check:package-lock": "tsx scripts/check_package_lock.ts",
"check:package-versions": "tsx scripts/check_package_versions.ts",
"check:tsconfig-refs": "npm run update:tsconfig-refs && tsx scripts/check_no_git_diff.ts",
"clean": "npm run clean:build && npm run clean:npm-proxy && rimraf --glob node_modules coverage .eslintcache packages/*/temp packages/*/node_modules",
"clean:build": "rimraf --glob packages/*/lib packages/*/tsconfig.tsbuildinfo",
"clean:npm-proxy": "npm run stop:npm-proxy && rimraf verdaccio-cache verdaccio-logs.txt",
"diff:check": "tsx scripts/check_pr_size.ts",
"docs": "typedoc",
"e2e:cleanup-resources": "tsx scripts/cleanup_e2e_resources.ts",
"lint": "eslint --max-warnings 0 . && tsx scripts/check_package_json.ts && prettier --check .",
"lint:fix": "eslint --cache --fix . && prettier --write .",
"live-dependency-health-checks": "npm run test:dir packages/integration-tests/lib/test-live-dependency-health-checks",
"new": "tsx scripts/copy_template.ts",
"prepare": "husky install",
"publish": "tsx scripts/publish.ts",
"publish:local": "tsx scripts/publish_local.ts",
"publish:snapshot": "tsx scripts/publish_snapshot.ts",
"set-script-shell": "npm config set script-shell bash --userconfig ./.npmrc",
"setup:local": "npm run set-script-shell && npm install && npm run build && npm link ./packages/cli ./packages/create-amplify",
"setup:test-project": "tsx scripts/setup_test_project.ts",
"start:npm-proxy": "tsx scripts/start_npm_proxy.ts",
"stop:npm-proxy": "tsx scripts/stop_npm_proxy.ts",
"test": "npm run test:dir $(tsx scripts/get_unit_test_dir_list.ts)",
"test:coverage:generate": "NODE_V8_COVERAGE=coverage/ npm run test",
"test:coverage:threshold": "c8 npm run test",
"test:dir": "tsx --test --test-reporter spec",
"test:scripts": "npm run test:dir $(glob --cwd=scripts --absolute **/*.test.ts)",
"update:api": "tsx scripts/concurrent_workspace_script.ts update:api --if-present",
"update:tsconfig-refs": "tsx scripts/update_tsconfig_refs.ts",
"vend": "npm run start:npm-proxy && npm run publish:local",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-backend.git"
},
"engines": {
"node": ">=18.16.0"
},
"author": "AWS Amplify",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws-amplify/amplify-backend/issues"
},
"homepage": "https://github.com/aws-amplify/amplify-backend#readme",
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-amplify": "^3.624.0",
"@aws-sdk/client-cloudformation": "^3.624.0",
"@aws-sdk/client-cloudwatch-logs": "^3.624.0",
"@aws-sdk/client-cognito-identity-provider": "^3.624.0",
"@aws-sdk/client-dynamodb": "^3.624.0",
"@aws-sdk/client-iam": "^3.624.0",
"@aws-sdk/client-s3": "^3.624.0",
"@aws-sdk/client-ssm": "^3.624.0",
"@changesets/cli": "^2.26.1",
"@changesets/get-release-plan": "^4.0.0",
"@changesets/types": "^6.0.0",
"@microsoft/api-extractor": "7.43.8",
"@octokit/webhooks-types": "^7.5.1",
"@shopify/eslint-plugin": "^43.0.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.11",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"c8": "^7.13.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-plugin-amplify-backend-rules": "^0.0.1",
"eslint-plugin-check-file": "^2.6.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^43.0.6",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-unicorn": "^46.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"glob": "^10.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"semver": "^7.5.4",
"tsx": "^4.6.1",
"typedoc": "^0.25.3",
"typescript": "~5.2.0",
"verdaccio": "^6.0.1"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --cache --fix"
],
"*.json": "prettier --write",
"*.yml": "prettier --write",
"*.md": "prettier --write"
}
}