-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
76 lines (76 loc) · 2.74 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "protokit",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "npx lerna run dev",
"build": "npm run prisma:generate && lerna run build",
"build:clean": "npx nx reset && npm run build",
"build-docker": "docker build -t protokit-base -f ./packages/deployment/docker/base/Dockerfile .",
"lint": "npx lerna run lint",
"lint:staged": "eslint",
"test": "npx lerna run test -- --passWithNoTests",
"test:ci": "npx lerna run test --concurrency=1 -- --passWithNoTests --forceExit",
"test:integration": "npx lerna run test:integration --concurrency=1 -- --passWithNoTests --forceExit",
"test:watch": "npx lerna run test:watch",
"prisma:migrate": "npx lerna run prisma:migrate",
"prisma:generate": "npx lerna run prisma:generate",
"commit": "cz",
"publish:canary": "npx lerna publish prerelease --no-private --exact --yes --canary --preid develop --dist-tag latest --loglevel verbose --force-git-tag --force-publish --no-verify-access",
"typedoc": "typedoc",
"coverage:merge": "istanbul-merge --out coverage/coverage-final.json $(find ./coverage -name \"coverage-final.json\" -print)",
"coverage:report": "nyc -t ./coverage report --reporter=text && nyc -t ./coverage report --reporter=text-summary",
"coverage:report:html": "nyc -t ./coverage report --reporter=html --report-dir=./coverage/html"
},
"private": true,
"devDependencies": {
"@nrwl/nx-cloud": "latest",
"@types/jest": "^29.4.0",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sonarjs": "^0.25.1",
"husky": "^8.0.3",
"istanbul-reporter-html-monorepo": "^1.1.3",
"jest": "^29.4.0",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"nx": "15.6.2",
"nyc": "^17.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.0.5",
"typedoc": "^0.26.11",
"typedoc-plugin-frontmatter": "1.0.0",
"typedoc-plugin-inline-sources": "^1.2.0",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "5.1",
"istanbul-merge": "^2.0.0"
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"npm run lint:staged"
]
},
"dependencies": {
"react-json-view-lite": "^1.4.0"
}
}