-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.41 KB
/
package.json
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": "animated-form-test",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test:chromium-headless": "playwright test --project=chromiumheadless",
"test": "playwright test --headed --project=chromium",
"postinstall": "playwright install chromium",
"ready": "rimraf dist node_modules package-lock.json && npm i",
"lint": "cross-env eslint 'tests/**/*.ts' 'playwright.config.ts'",
"lint:fix": "cross-env eslint 'tests/**/*.ts' 'playwright.config.ts' --fix",
"stop": "lsof -t -i :3000 | xargs kill -9",
"format": "cross-env prettier --write 'tests/**/*.ts' 'playwright.config.ts' '.eslintrc.js' '**/*.json' '**/*.md' '!package-lock.json' '!dist/**/*' '!build/**/*'"
},
"dependencies": {
"express": "^4.21.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@playwright/test": "^1.48.1",
"@types/node": "^22.7.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-playwright": "^1.7.0",
"eslint-plugin-prettier": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"cross-env": "^7.0.3"
}
}