-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.26 KB
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
{
"name": "connectkit",
"version": "1.0.0",
"private": true,
"description": "Enterprise-ready contact management platform",
"author": "ConnectKit Team",
"license": "MIT",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "docker-compose up",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"test:unit": "npm run test:unit --workspaces",
"test:integration": "npm run test:integration --workspaces",
"test:e2e": "npm run test:e2e --workspace=frontend",
"lint": "npm run lint --workspaces",
"format": "npm run format --workspaces",
"format:check": "npx prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"type-check": "npm run type-check --workspaces",
"prepare": "[ \"$CI\" = \"true\" ] || husky install",
"pre-commit": "lint-staged",
"commit": "cz",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up",
"docker:down": "docker-compose down",
"docker:clean": "docker-compose down -v",
"db:migrate": "npm run db:migrate --workspace=backend",
"db:seed": "npm run db:seed --workspace=backend",
"security:check": "npm audit --workspaces",
"deps:update": "npm update --workspaces",
"sbom:generate": "node scripts/sbom-generator.js",
"sbom:check": "node scripts/vulnerability-check.js",
"sbom:full": "npm run sbom:generate && npm run sbom:check",
"compliance:federal": "npm run sbom:full"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.5.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"overrides": {
"cross-spawn": "^7.0.6"
},
"resolutions": {
"cross-spawn": "^7.0.6"
}
}