-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "protokit",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "npx lerna run dev",
"build": "npx 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 -- --passWithNoTests --forceExit",
"test:integration": "npx lerna run test:integration -- --passWithNoTests --forceExit",
"test:watch": "npx lerna run test:watch",
"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"
},
"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",
"jest": "^29.4.0",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"nx": "15.6.2",
"prettier": "^3.2.5",
"ts-jest": "^29.0.5",
"typescript": "5.1"
},
"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"
}
}