-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.03 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
{
"name": "cipher-tube",
"version": "1.5.0",
"private": true,
"description": "Modular zero-trust platform — Sentinel · Bolt · Palette",
"workspaces": [
"sentinel",
"bolt",
"palette",
"tube",
"ui",
"wizard"
],
"scripts": {
"install:all": "npm install --workspaces",
"test": "npm run test --workspaces --if-present",
"test:unit": "npm run test:unit --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,yml,yaml}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md,yml,yaml}'",
"storybook": "cd palette && npm run storybook",
"storybook:build": "cd palette && npm run storybook:build",
"policy:test": "opa test governance/policies/ -v",
"policy:fmt": "opa fmt -w governance/policies/",
"security:scan": "detect-secrets scan --all-files --baseline .secrets.baseline",
"prepare": "echo 'Ensure git hooks are configured'"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^9.0.0",
"globals": "^17.6.0",
"jest-environment-node": "^30.4.1",
"prettier": "^3.3.0",
"stylelint": "^16.0.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"tsx": "^4.22.4",
"typescript": "^5.5.0",
"typescript-eslint": "^8.59.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.4.1",
"helmet": "^8.1.0",
"js-yaml": "^4.1.0",
"lru-cache": "^11.3.5",
"redis": "^5.12.1"
}
}