-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.66 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
{
"name": "csshub",
"version": "1.6.0",
"description": "CssHub monorepo",
"author": "CssHub",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -k -n backend,extension \"npm run dev:backend\" \"npm run dev:extension\"",
"dev:all": "npm run dev",
"dev:backend": "npm --workspace @csshub/backend run dev",
"dev:extension": "npm --workspace @csshub/extension run dev",
"build": "npm run build --workspaces --if-present",
"build:all": "npm run build --workspaces --if-present",
"build:extension": "npm --workspace @csshub/extension run build:prod",
"build:extension:prod": "npm run build --workspace @csshub/shared && npm --workspace @csshub/extension run build:prod",
"build:extension:staging": "npm run build --workspace @csshub/shared && npm --workspace @csshub/extension run build:staging",
"build:extension:preview": "npm run build --workspace @csshub/shared && npm --workspace @csshub/extension run build:preview",
"build:extension:dev": "npm --workspace @csshub/extension run build:dev",
"build:staging": "npm run build:extension:staging",
"build:preview": "npm run build:extension:preview",
"build:dev": "npm run build:extension:dev",
"test": "node --test scripts/test-security.test.mjs && npm run test --workspaces --if-present",
"test:e2e": "npm run test:e2e --workspaces --if-present",
"lint": "eslint \"apps/**/*.{ts,tsx}\" \"packages/**/*.ts\" \"scripts/**/*.mjs\"",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --build",
"typecheck:shared": "npm --workspace @csshub/shared run typecheck",
"typecheck:all": "npm run typecheck --workspaces --if-present",
"typecheck:backend": "npm --workspace @csshub/backend run typecheck",
"typecheck:extension": "npm --workspace @csshub/extension run typecheck",
"audit:deps": "npm audit --workspaces",
"audit:fallow": "npx fallow audit --base origin/main --format json --quiet --ci --fail-on-issues",
"test:security": "node scripts/test-security.mjs",
"test:security:strict": "node scripts/test-security.mjs --strict",
"test:security:json": "node scripts/test-security.mjs --json",
"check:bundle-budgets": "node scripts/check-bundle-budgets.mjs",
"doctor:oauth": "node scripts/doctor-oauth.mjs",
"check:backend-vercel": "node scripts/check-backend-vercel-boundary.mjs",
"derive:manifest-key": "node scripts/derive-manifest-key.mjs",
"package:extension:store": "node scripts/package-extension-store.mjs"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.0",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.4.0",
"typescript-eslint": "^8.46.1"
}
}