-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "@weco/identity",
"version": "0.1.0",
"description": "Identity services for Wellcome Collection users",
"repository": "[email protected]:/wellcomecollection/identity.git",
"author": "Wellcome Collection <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc --build tsconfig.build.json",
"package-api-templates": "yarn workspace @weco/identity-api package-templates",
"build-auth0-database-scripts": "yarn workspace @weco/auth0-database-scripts build",
"build-auth0-actions": "yarn workspace @weco/auth0-actions build",
"clean": "lerna run clean",
"test": "lerna run test",
"prepare": "husky install"
},
"workspaces": {
"packages": [
"packages/apps/**",
"packages/shared/**"
],
"nohoist": [
"@weco/identity-api/**",
"@weco/identity-api-authorizer/**",
"@weco/patron-deletion-tracker/**"
]
},
"devDependencies": {
"husky": "^8.0.1",
"lerna": "^3.22.1",
"lint-staged": "^13.0.2",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"engines": {
"node": "18"
}
}