forked from passportxyz/passport-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.08 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
{
"name": "@gitcoinco/passport-sdk",
"private": true,
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/reader",
"packages/scorer",
"packages/types",
"packages/verifier",
"packages/writer"
],
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/config-lerna-scopes": "^17.0.2",
"@lerna/pack-directory": "^5.1.2",
"@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"
},
"scripts": {
"clean": "lerna run clean",
"nuke": "yarn clean && rimraf node_modules",
"prepare": "husky install",
"lint": "lerna run lint",
"webpack:writer": "yarn workspace @gitcoinco/passport-sdk-writer webpack",
"webpack:reader": "yarn workspace @gitcoinco/passport-sdk-reader webpack",
"webpack:scorer": "yarn workspace @gitcoinco/passport-sdk-scorer webpack",
"webpack:verifier": "yarn workspace @gitcoinco/passport-sdk-verifier webpack",
"webpack": "yarn webpack:writer && yarn webpack:reader && yarn webpack:verifier && yarn webpack:scorer",
"build:writer": "yarn workspace @gitcoinco/passport-sdk-writer build",
"build:reader": "yarn workspace @gitcoinco/passport-sdk-reader build",
"build:scorer": "yarn workspace @gitcoinco/passport-sdk-scorer build",
"build:verifier": "yarn workspace @gitcoinco/passport-sdk-verifier build",
"build": "yarn build:writer && yarn build:reader && yarn build:verifier && yarn build:scorer",
"test:writer": "yarn workspace @gitcoinco/passport-sdk-writer test",
"test:reader": "yarn workspace @gitcoinco/passport-sdk-reader test",
"test:scorer": "yarn workspace @gitcoinco/passport-sdk-scorer test",
"test:verifier": "yarn workspace @gitcoinco/passport-sdk-verifier test",
"test": "yarn test:writer && yarn test:reader && yarn test:verifier && yarn test:scorer",
"postinstall": "yarn build"
},
"engines": {
"yarn": ">=1.22.10",
"node": ">=16.0.0"
},
"resolutions": {
"dids": "^3.1.0"
}
}