-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 953 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 953 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
33
34
35
36
37
38
39
40
{
"name": "onlyfly",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.ts\"",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.58.1",
"@types/node": "^25.2.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^2.5.1",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1"
},
"dependencies": {
"dotenv": "^17.2.3",
"zod": "^4.3.6"
}
}