-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.82 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
115
116
117
118
119
120
121
{
"name": "@code-like-a-carpenter/workbench",
"version": "0.0.0-development",
"description": "Monorepo of common libraries, CLIs, and codegen tools",
"keywords": [],
"homepage": "https://www.github.com/code-like-a-carpenter/workbench",
"bugs": "https://www.github.com/code-like-a-carpenter/workbench/issues",
"license": "MIT",
"author": "Ian Remmel <[email protected]> (https://www.ianwremmel.com)",
"repository": "[email protected]:code-like-a-carpenter/workbench.git",
"scripts": {
"build": "npx nx run-many --target=build",
"eslint": "eslint ${ESLINT_FORMAT_OPTIONS:-} --ignore-path .gitignore ",
"lint": "npm-run-all --continue-on-error --parallel lint:*",
"lint:changelog": "commitlint --from origin/main --to HEAD",
"lint:es": "npm run --silent eslint -- .",
"prelint:types": "mkdir --parents reports/style",
"lint:types": "bash -c \"tsc --build $TSC_OPTIONS\"",
"postinstall": "patch-package",
"prepare": "husky install",
"test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "3.188.0",
"@aws-sdk/client-dynamodb": "3.188.0",
"@aws-sdk/client-eventbridge": "3.188.0",
"@aws-sdk/lib-dynamodb": "3.188.0",
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@graphql-tools/apollo-engine-loader": "^8.0.1",
"@ianwremmel/eslint-plugin-ianwremmel": "^6.2.2",
"@jest/types": "^29.6.3",
"@semrel-extra/npm": "^1.2.2",
"@swc-node/register": "^1.9.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cuid": "^3.0.0",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-workspaces": "^0.10.1",
"glob": "^10.4.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.4.3",
"jest-junit": "^16.0.0",
"json-schema-to-typescript": "^14.0.4",
"lint-staged": "^15.2.5",
"lodash": "^4.17.21",
"markdown-toc": "^1.2.0",
"multi-semantic-release": "^3.0.1",
"npm-run-all": "^4.1.5",
"nx": "^19.1.1",
"openapi-typescript": "^6.7.6",
"patch-package": "^8.0.0",
"prettier": "^3.3.0",
"prettier-2": "npm:prettier@^2",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"wait-on": "^7.2.0"
},
"engines": {
"node": "20.x"
},
"private": true,
"workspaces": [
"examples/*",
"packages/*/*"
],
"lint-staged": {
"*.mjs": "npm run eslint -- ",
"*.mts": "npm run eslint -- ",
"*.js": "npm run eslint -- ",
"*.jsx": "npm run eslint -- ",
"*.ts": "npm run eslint -- ",
"*.tsx": "npm run eslint -- ",
"bin/**": "npm run eslint -- "
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semrel-extra/npm"
]
},
"code-like-a-carpenter": {
"root": true,
"deps": {
"definitelyTyped": [
"dotenv",
"http-proxy",
"js-yaml",
"lodash.*",
"prettier",
"vhost",
"yargs"
]
}
}
}