-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 962 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
28
29
{
"name": "@quipt/monorepo",
"repository": "[email protected]:quipt/monorepo.git",
"license": "Unlicense",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@angular/*",
"**/@angular/*/**"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.33.0",
"generate-lockfile": "^0.0.12",
"typescript": "4.8.4"
},
"scripts": {
"lint": "eslint .",
"ci:web": "yarn workspace @quipt/web test --watch=false",
"lock:web": "generate-lockfile --lockfile yarn.lock --package ./packages/web/package.json --write ./packages/web/yarn.lock --force --dev",
"lock:media-handler": "generate-lockfile --lockfile yarn.lock --package ./packages/media-handler/package.json --write ./packages/media-handler/yarn.lock --force --dev",
"postinstall": "yarn lock:web && yarn lock:media-handler"
}
}