-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 860 Bytes
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
{
"name": "t-shirt-shop",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.22.0",
"scripts": {
"dev": "turbo dev",
"dev:docker": "docker-compose up",
"build": "turbo build",
"build:docker": "docker-compose build",
"start": "docker-compose up -d",
"stop": "docker-compose down",
"clean": "docker-compose down -v",
"lint": "turbo lint",
"test": "turbo run test:architecture",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"size": "size-limit"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@size-limit/preset-app": "^11.2.0",
"@types/jest": "^29.5.14",
"eslint": "^9.26.0",
"prettier": "^3.0.0",
"size-limit": "^11.2.0",
"ts-jest": "^29.3.3",
"tsarch": "^5.4.1",
"turbo": "^2.10.4",
"typescript": "^5.8.3"
}
}