forked from passportxyz/passport
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.72 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
{
"name": "dpopp",
"private": true,
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.23",
"concurrently": "^7.0.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"workspaces": [
"app",
"iam",
"schemas",
"identity",
"types"
],
"scripts": {
"clean": "lerna run clean",
"nuke": "yarn clean && rimraf node_modules",
"prepare": "husky install",
"lint": "lerna run lint",
"lint:iam": "yarn workspace @dpopp/iam lint",
"lint:identity": "yarn workspace @dpopp/identity lint",
"test": "lerna run test",
"test:iam": "yarn workspace @dpopp/iam test",
"test:identity": "yarn workspace @dpopp/identity test",
"prettier": "lerna run prettier",
"build": "yarn build:identity && yarn build:iam && yarn build:app",
"build:identity": "yarn workspace @dpopp/identity build",
"build:iam": "yarn workspace @dpopp/iam build",
"build:app": "yarn workspace @dpopp/app build",
"start": "concurrently --kill-others \"yarn start:iam\" \"yarn start:app\"",
"start:iam": "yarn workspace @dpopp/iam start",
"start:app": "yarn workspace @dpopp/app start",
"app": "yarn workspace @dpopp/app",
"schemas": "yarn workspace @dpopp/schemas",
"iam": "yarn workspace @dpopp/iam",
"identity": "yarn workspace @dpopp/identity",
"types": "yarn workspace @dpopp/types",
"prestart": "yarn build:identity",
"pretest": "yarn build:identity",
"postinstall": "yarn build:identity"
},
"engines": {
"yarn": ">=1.22.10",
"node": ">=16.0.0"
},
"resolutions": {
"csstype": "3.0.10",
"**/@types/react": "17.0.2"
}
}