-
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.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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": "CoinRadar",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:frontend": "turbo run dev --filter=frontend",
"dev:backend": "turbo run dev --filter=backend",
"lint": "turbo run lint",
"test": "turbo run test",
"test:backend": "turbo run test --filter=backend",
"test:backend:int": "turbo run test:integration --filter=backend",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check": "prettier --check \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@testcontainers/postgresql": "^11.13.0",
"@types/jest": "^30.0.0",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prettier": "^3.6.2",
"supertest": "^7.2.2",
"testcontainers": "^11.13.0",
"ts-jest": "^29.4.6",
"turbo": "^2.6.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.1",
"workspaces": [
"apps/backend",
"apps/frontend"
]
}