-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
30 lines (30 loc) · 1.32 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
{
"name": "plugin-e2e-tests",
"scripts": {
"test": "PW_SLOMO=200 npm run test --prefix ../../../mattermost-server/e2e-tests/playwright -- --project=chrome --config='../../../mattermost-plugin-github/e2e/playwright/playwright.config.ts'",
"test-ci": "PW_HEADLESS=true npm test",
"test-slomo": "npm run test-slomo --prefix ../../../mattermost-server/e2e-tests/playwright -- --project=chrome --config='../../../mattermost-plugin-github/e2e/playwright/playwright.config.ts",
"debug": "npm test -- --debug",
"show-report": "npm run show-report --prefix ../../../mattermost-server/e2e-tests/playwright",
"lint": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext .js --ext ts . --quiet --cache",
"lint:fix": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext .js --ext ts . --quiet --cache --fix",
"tsc": "tsc"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "~5.59.0",
"@typescript-eslint/parser": "~5.59.0",
"cross-env": "7.0.3",
"dotenv": "^16.0.3",
"eslint": "7.9.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-react": "~7.32.2",
"eslint-plugin-react-hooks": "~4.6.0",
"typescript": "^4.9.5"
},
"dependencies": {
"express": "^4.21.2",
"pg": "^8.10.0"
}
}