-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 753 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 753 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
{
"name": "tests",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cd movies-app && npm run dev",
"build": "cd movies-app && npm run build",
"start": "cd movies-app && npm run start",
"lint": "tsc --noEmit && eslint tests/**/*.ts",
"test": "playwright test",
"format": "prettier --write tests/**/*"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.57.0-alpha-2025-11-05",
"@types/eslint__js": "^8.42.3",
"@types/node": "^24.9.1",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"tslint": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"workspaces": [
"movies-app"
]
}