-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.67 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.67 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
{
"name": "stressless",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"backend:build": "pnpm --filter backend build",
"frontend:build": "pnpm --filter frontend build",
"build:all": "concurrently -c \"auto\" \"pnpm backend:build\" \"pnpm frontend:build\"",
"backend:start": "pnpm --filter backend start",
"frontend:start": "pnpm --filter frontend start",
"start:all": "concurrently -c \"auto\" \"pnpm backend:start\" \"pnpm frontend:start\"",
"backend:test:unit": "pnpm --filter backend test",
"backend:test:unit:ci": "pnpm --filter backend test:ci",
"frontend:test:unit": "pnpm --filter frontend test",
"frontend:test:unit:ci": "pnpm --filter frontend test",
"test:unit": "concurrently -c \"auto\" \"pnpm backend:test:unit\" \"pnpm frontend:test:unit\"",
"test:unit:ci": "concurrently -c \"auto\" \"pnpm backend:test:unit:ci\" \"pnpm frontend:test:unit:ci\"",
"lint": "pnpm exec eslint frontend backend --ext .ts,.tsx --fix --ignore-pattern 'frontend/.next/*' --ignore-pattern 'backend/dist/*' --ignore-pattern 'backend/src/db/generated/*'",
"format": "pnpm exec prettier --write frontend/**/*.{ts,tsx} backend/**/*.ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.5.2",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/express": "^5.0.1",
"@types/pg": "^8.11.11",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"vitest": "^3.0.9"
},
"dependencies": {
"concurrently": "^9.1.2"
}
}