-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.5 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs:start": "npm run build && lerna run start --scope=klayr-did-docs",
"docs:clean": "lerna run clean --scope=klayr-did-docs",
"docs:build": "npm run build && if test -d docs; then rm -r docs; fi; lerna run clean --scope=klayr-did-docs --skip-nx-cache && lerna run build --scope=klayr-did-docs --skip-nx-cache && cp -r packages/klayr-did-docs/build docs && shx echo -n \"klayr-did.js.org\" > docs/CNAME",
"clean": "lerna run clean",
"clean:node_modules": "lerna clean --yes",
"clean:full": "nx run-many --target=clean && npm run clean:node_modules && rm -rf node_modules && npm install && npm run build",
"format": "nx run-many --target=format",
"format:since": "nx affected --target=format",
"lint": "nx run-many --target=lint",
"lint:since": "nx affected --target=lint",
"lint:fix": "nx run-many --target=lint:fix",
"test": "nx run-many --target=test --exclude=klayr-did-docs",
"test:ci": "nx run-many --target=test:ci --exclude=klayr-did-docs",
"test:since": "nx affected --target=test --exclude=klayr-did-docs",
"test:module": "lerna run test:coverage --scope=@klayr-did/klayr-did-module",
"test:did": "lerna run test:coverage --scope=@klayr-did/klayr-decentralized-identifier",
"test:vc": "lerna run test:coverage --scope=@klayr-did/klayr-verifiable-credentials",
"build": "nx run-many --target=build --exclude=klayr-did-docs",
"build:since": "nx affected --target=build --exclude=klayr-did-docs",
"build:module": "lerna run build --scope=@klayr-did/klayr-did-module",
"build:did": "lerna run build --scope=@klayr-did/klayr-decentralized-identifier",
"build:vc": "lerna run build --scope=@klayr-did/klayr-verifiable-credentials",
"prepare": "husky install",
"postinstall": "husky install",
"version": "lerna version --no-private",
"prepack": "lerna run test",
"postpublish": "npm install",
"preversion": "lerna run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-lisk-base": "^2.0.1",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lerna": "^7.1.4",
"lint-staged": "^13.2.3",
"nx": "16.6.0",
"prettier": "3.0.1",
"shx": "^0.3.4",
"typescript": "^5.1.6"
}
}