-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 2.19 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
{
"name": "workspace",
"version": "0.0.0",
"packageManager": "pnpm@11.20.0",
"license": "MIT",
"scripts": {
"preinstall": "sh -c 'rm -f package-lock.json yarn.lock; case \"$npm_config_user_agent\" in npm/*|yarn/*) echo \"Use pnpm instead\" >&2; exit 1 ;; *) ;; esac'",
"build": "pnpm run typecheck && pnpm run lint && pnpm -r --if-present run build",
"format": "prettier --write \"artifacts/**/*.{ts,tsx}\" \"lib/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" \"scripts/**/*.{ts,tsx}\" \"*.mts\" && pnpm --filter @workspace/api-server run format",
"format:check": "prettier --check \"artifacts/**/*.{ts,tsx}\" \"lib/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" \"scripts/**/*.{ts,tsx}\" \"*.mts\" && pnpm --filter @workspace/api-server exec uv run ruff format --check app tests",
"lint": "eslint . && pnpm --filter @workspace/api-server exec uv run ruff check app tests",
"lint:fix": "eslint . --fix",
"typecheck:libs": "tsc --build",
"typecheck": "pnpm run typecheck:libs && pnpm --filter @workspace/api-server run typecheck && pnpm -r --filter \"./artifacts/**\" --filter \"./scripts\" --filter \"./tests\" --if-present run typecheck",
"test": "./run-all-tests.sh",
"test:unit": "pnpm --filter @workspace/api-server run test && pnpm --filter @workspace/tests run test:unit",
"test:component": "pnpm --filter @workspace/tests run test:component",
"test:api": "pnpm --filter @workspace/tests run test:api",
"test:contract": "pnpm --filter @workspace/tests run test:contract",
"test:e2e": "pnpm --filter @workspace/tests run test:e2e",
"test:regression": "./run-all-tests.sh --regression",
"report:allure": "pnpm --filter @workspace/tests run report:allure",
"report:allure:single": "pnpm --filter @workspace/tests run report:allure:single",
"report:allure:serve": "pnpm --filter @workspace/tests run report:allure:serve"
},
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"eslint": "^10.8.1",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.11.0",
"prettier": "^3.8.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.67.0"
},
"dependencies": {
"stripe": "^22.3.1"
}
}