-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.44 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.44 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
{
"name": "aphiria-com",
"version": "1.0.0",
"description": "Aphiria.com monorepo - website, API, infrastructure, and tests",
"private": true,
"workspaces": [
"apps/*",
"infrastructure/*",
"tests/*",
"tools/*"
],
"scripts": {
"build": "npm run build --workspace=tools/build-docs && npm run build --workspace=infrastructure/pulumi && npm run build --workspace=apps/web",
"build:docs": "npm run build:docs --workspace=tools/build-docs",
"dev": "npm run dev --workspace=apps/web",
"lint": "eslint . && npm run lint --workspace=apps/web",
"lint:fix": "eslint . --fix && npm run lint:fix --workspace=apps/web",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm test --workspace=tools/build-docs && npm test --workspace=apps/web && npm test --workspace=infrastructure/pulumi",
"test:e2e": "npm run test:e2e --workspace=tests/e2e",
"test:watch": "echo 'Run test:watch in specific workspace: npm run test:watch --workspace=apps/web'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.0.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.50.1"
}
}