-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.76 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
{
"name": "wonder-stuff",
"version": "1.0.0",
"description": "Packages for sharing features across JavaScript-based projects",
"repository": "[email protected]:Khan/wonder-stuff.git",
"author": "Jeff Yates <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"build-settings"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.25.1",
"@babel/eslint-plugin": "^7.22.10",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.23.2",
"@changesets/cli": "^2.26.2",
"@google-cloud/kms": "^3.8.0",
"@google-cloud/logging-winston": "^4.2.4",
"@google-cloud/profiler": "^4.2.0",
"@google-cloud/trace-agent": "^5.1.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.3",
"@rollup/plugin-terser": "^0.4.3",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.3.93",
"@types/express": "^4.17.21",
"@types/express-winston": "^4.0.0",
"@types/jest": "^29.5.5",
"@types/jest-when": "^3.5.5",
"@types/jsdom": "^21.1.1",
"@types/superagent": "^4.1.16",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"babel-watch": "^7.8.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-winston": "^4.2.0",
"fast-glob": "^3.3.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-when": "^3.6.0",
"jsdom": "^21.1.1",
"npm-package-json-lint": "^8.0.0",
"prettier": "^3.0.3",
"rollup": "^4.21.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-executable-output": "^1.3.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"superagent": "^5.3.1",
"typedoc": "^0.25.3",
"typescript": "^5.1.5",
"winston": "^3.10.0"
},
"resolutions": {
"//": "we need to pin wide-align/string-width because v5 & up are ESM only",
"wide-align/string-width": "^4.2.0",
"node-gyp": "^10.0.0"
},
"scripts": {
"rollup": "rollup -c build-settings/rollup.config.mjs",
"build": "yarn rollup",
"build:prodsizecheck": "yarn rollup --configPlatforms='browser' --configFormats='esm' --configEnvironment='production'",
"build:types": "yarn tsc --build --verbose tsconfig-build.json && ./build-settings/check-type-definitions.ts",
"build:docs": "typedoc",
"watch": "yarn rollup --watch",
"clean": "rm -rf packages/wonder-stuff-*/dist && rm -rf packages/wonder-stuff-*/node_modules && rm -f packages/*/*.tsbuildinfo",
"coverage": "yarn run jest --coverage",
"format": "prettier --write .",
"lint": "yarn lint:ci .",
"lint:ci": "eslint --ext .ts --ext .js",
"lint:pkg-json": "yarn npmPkgJsonLint ./packages/wonder-stuff-*",
"publish:ci": "yarn run lint:pkg-json && node utils/pre-publish-check-ci.js && git diff --stat --exit-code HEAD && yarn build && yarn build:types && changeset publish",
"test": "yarn jest",
"typecheck": "tsc",
"nochangeset": "yarn changeset add --empty",
"add:devdepbysha": "bash -c 'yarn add -W --dev \"git+https://[email protected]/Khan/$0.git#$1\"'"
}
}