-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 6.06 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
{
"name": "howdju-monorepo",
"version": "1.0.0",
"description": "Howdju's monorepo package",
"main": "index.js",
"repository": "git@bitbucket.org:howdju/premiser.git",
"author": "Carl Gieringer <carl.gieringer@gmail.com>",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"check:everything": "echo check:everything && yarn run check:yarn-install && yarn run check-format:all && yarn run typecheck:all && yarn run lint:all && yarn run test:all && yarn run custom-check:all && yarn run check-build:all && yarn run check:todo-format && yarn run check:do-not-merge && echo check:everything succeeded || {echo check:everything failed; exit 1}",
"check:pushed": "bin/check-pushed.sh",
"check:committed": "node bin/check-committed.mjs",
"check:do-not-merge": "echo check:do-not-merge && bin/check-do-not-merge.sh && echo check:do-not-merge succeeded || {echo check:do-not-merge failed; exit 1}",
"check:todo-format": "echo check:todo-format && bin/check-todo-format.sh \"$@\" && echo check:todo-format succeeded || {echo check:todo-format failed; exit 1}",
"check:pre-deploy": "bin/pre-deploy-check.sh",
"check:test-db-dump-updated": "bin/check-test-db-dump-updated.sh",
"check:yarn-install": "echo check:yarn-install && yarn install --immutable && echo check:yarn-install succeeded || {echo check:yarn-install failed; exit 1}",
"check-build:all": "echo check-build:all && yarn workspaces foreach -Apv run check-build && echo check-build:all succeeded || {echo check-build:all faied; exit 1}",
"check-format": "yarn run prettier --check --ignore-path .gitignore jest lambdas/bin",
"check-format:all": "echo check-format:all && yarn workspaces foreach -Apv run check-format && echo check-format:all succeeded || {echo check-format:all failed; exit 1}",
"clear:coverage": "echo clear:coverage && yarn workspaces foreach -Apv exec rm -rf coverage && echo clear:coverage succeeded || {echo clear:coverage failed; exit 1}",
"fix-format": "yarn run lint --fix && yarn run prettier --write --ignore-path .gitignore jest lambdas/bin",
"fix-format:all": "echo format:all && yarn workspaces foreach -Apv run fix-format && echo fix-format:all succeeded || {echo fix-format:all failed; exit 1}",
"lint": "eslint jest lambdas/bin",
"rm:all:node_modules": "yarn workspaces foreach -Apv exec rm -r node_modules && rm -r node_modules",
"rm:all:types": "yarn workspaces foreach -Apv exec tsc --build --clean",
"merge:coverage": "bin/merge-coverage.sh",
"lint:all": "echo lint:all && yarn workspaces foreach -Apv run lint && echo lint:all succeeded || {echo lint:all failed; exit 1}",
"custom-check:all": "echo custom-check:all && yarn workspaces foreach -Apv run custom-check && echo custom-check:all succeeded || {echo custom-check:all faied; exit 1}",
"typecheck:all": "echo typecheck:all && yarn workspaces foreach -Apv --topological-dev run typecheck && echo typecheck:all succeeded || {echo typecheck:all failed; exit 1}",
"test:all": "echo test:all && time yarn workspaces foreach -Apv run test --runInBand && echo test:all succeeded || {echo test:all failed; exit 1}",
"test:all:coverage": "yarn run clear:coverage && echo test:all:coverage && time yarn workspaces foreach -Apv run test --ci --runInBand --coverage && echo test:all:coverage succeeded || {echo test:all:coverage failed; exit 1}",
"test:all:coverage:changed": "yarn run clear:coverage && echo test:all:coverage:changed && time yarn workspaces foreach -Apv run test --ci --runInBand --coverage --changedSince=${0:-origin/master} && echo test:all:coverage:changed succeeded || {echo test:all:coverage:changed failed; exit 1}"
},
"workspaces": {
"packages": [
"eslint-config-howdju",
"howdju-ajv-sourced",
"howdju-client-common",
"howdju-common",
"howdju-docs",
"howdju-dom",
"howdju-ops",
"howdju-elastic",
"howdju-mobile-app",
"howdju-service-common",
"howdju-service-routes",
"howdju-test-common",
"howdju-text-fragments",
"lambdas/*",
"premiser-api",
"premiser-ext",
"premiser-migrate",
"premiser-processing",
"premiser-ui"
]
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-proposal-do-expressions": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.13.8",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"babel-jest": "^29.3.1",
"browserslist": "^4.17.0",
"debug": "^4.3.4",
"eslint": "^8.27.0",
"git-hooks": "^1.1.10",
"jest": "^29.3.1",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"typescript": "^4.9.4"
},
"packageManager": "yarn@4.0.1",
"resolutions": {
"react-native@^0.66": "patch:react-native@npm%3A0.66.5#./.yarn/patches/react-native-npm-0.66.5-22e5dd8ec5.patch",
"react-material-symbols@^4.1.1": "patch:react-material-symbols@npm%3A4.1.1#./.yarn/patches/react-material-symbols-npm-4.1.1-d06ca7bff7.patch",
"jsdom@^21.1.2": "patch:jsdom@npm%3A21.1.2#./.yarn/patches/jsdom-npm-21.1.2-4916b89bf1.patch"
},
"dependencies": {
"@react-md/alert": "^2"
}
}