-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 945 Bytes
/
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
{
"name": "sophistree-monorepo",
"author": "Carl Gieringer",
"repository": {
"type": "git",
"url": "https://github.com/carlgieringer/sophistree.git"
},
"license": "ISC",
"private": true,
"workspaces": [
"packages/tapestry-highlights",
"packages/web-app",
"packages/browser-extension"
],
"scripts": {
"check-all": "time (npx package-lock-utd && npm run type-check-all && npm run lint-all && npm run format-check-all && npm run test-all) || { echo 'Checks failed'; exit 1; }",
"format-check-all": "npm run format-check --workspaces --if-present",
"lint-all": "npm run lint --workspaces --if-present",
"test-all": "npm run test --workspaces --if-present",
"test-ci-all": "npm run test-ci --workspaces --if-present",
"type-check-all": "npm run type-check --workspaces --if-present",
"watch-all": "node bin/watchAll.mjs"
},
"devDependencies": {
"concurrently": "^9.0.1"
}
}