forked from Qyoue/Qyou
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.97 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
{
"name": "qyou-hackathon-starter",
"version": "0.1.0",
"private": true,
"description": "Foundation monorepo for the Qyou hackathon starter — monorepo setup and authentication only.",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"postinstall": "npm run build -w @qyou/shared -w @qyou/stellar",
"build": "npm run build -w @qyou/shared -w @qyou/stellar && npm run build --workspaces --if-present",
"dev": "concurrently -n api,web,mobile \"npm run dev -w @qyou/api\" \"npm run dev -w @qyou/web\" \"npm run dev -w @qyou/mobile\"",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:lint-phase1": "node --import tsx scripts/__tests__/lint-typecheck-phase1.test.ts",
"lint-harden-phase1:ci": "node --import tsx scripts/lint-typecheck-harden-phase1.ts",
"test:docs-phase1": "node --import tsx scripts/__tests__/docs-contract-phase1.test.ts",
"validate:ci-phase3": "node --import tsx scripts/ci-pipeline-workflow-phase3.ts",
"ci-harden-phase3:ci": "node --import tsx scripts/ci-pipeline-hardening-phase3.ts",
"test:ci-phase3-pipeline": "node --import tsx scripts/__tests__/ci-pipeline-phase3.test.ts",
"validate:ci-stability": "node --import tsx scripts/__tests__/ci-pipeline-stability.test.ts",
"ci-harden:check": "node --import tsx scripts/ci-pipeline-hardening.ts",
"test:lint-contract": "node --import tsx scripts/__tests__/lint-typecheck-contract.test.ts"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"concurrently": "^9.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.18.0"
}
}