-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.98 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.98 KB
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
41
42
43
44
{
"name": "next-pms",
"version": "0.1.0",
"main": "index.js",
"type": "module",
"repository": "git@github.com:rtCamp/next-pms.git",
"author": "rtCamp",
"license": "AGPLv3",
"private": true,
"scripts": {
"dev": "cd frontend && npm run dev",
"build": "cd frontend && npm install && npm run build",
"e2e:tests": "npx playwright test --config=tests/e2e/playwright.config.js",
"lint:precommit": "eslint --fix --config eslint.config.js",
"allure:report": "allure generate allure-results --clean -o allure-report-for-count-extraction",
"allure:serve": "allure serve allure-results",
"allure:htmlReport": "allure generate allure-results --single-file --clean -o allure-report",
"allure:prepareCI": "cp -r allure-report-for-count-extraction/history allure-results/history || echo 'No history to copy' ",
"allure:extract": "allure generate ../allure-results --clean -o ../allure-report-for-count-extraction",
"allure:prepare": "cp -r ../allure-report-for-count-extraction/history ../allure-results/history || echo 'No history to copy'",
"allure:singleHtml": "allure generate ../allure-results --single-file --clean -o ../allure-report",
"visual:test": "npx playwright test tests/visualAutomation/specs/visualAutomation.spec.js --config=tests/visualAutomation/playwright.config.js --workers=1",
"visual:test:update": "npx playwright test --update-snapshots tests/visualAutomation/specs/visualAutomation.spec.js --config=tests/visualAutomation/playwright.config.js --workers=1"
},
"devDependencies": {
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.6",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.0",
"allure-commandline": "^2.36.0",
"allure-playwright": "^3.4.5",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.32.0",
"playwright": "^1.56.1"
},
"dependencies": {
"dotenv": "^17.2.3",
"axios": "^1.15.0",
"proper-lockfile": "^4.1.2"
},
"overrides": {
"follow-redirects": "^1.15.12"
}
}