-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.7 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.7 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
45
46
47
48
{
"name": "progress-planner",
"version": "1.2.0",
"private": true,
"description": "WordPress plugin",
"author": "Team Emilia Projects",
"license": "GPL-3.0-or-later",
"keywords": [
"WordPress",
"plugin"
],
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.0.0",
"@wordpress/scripts": "*",
"@wordpress/stylelint-config": "*",
"@wp-playground/cli": "^0.9.0",
"dotenv": "^16.4.0",
"eslint-plugin-eslint-comments": "*",
"husky": "*",
"typescript": "^5.6.0"
},
"scripts": {
"format": "wp-scripts format ./assets",
"lint:css": "wp-scripts lint-style \"**/*.css\"",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js": "wp-scripts lint-js ./assets/js/*.js && wp-scripts lint-js ./assets/js/web-components/*.js && wp-scripts lint-js ./assets/js/widgets/*.js && wp-scripts lint-js ./assets/js/recommendations/*.js",
"lint:js:fix": "wp-scripts lint-js ./assets/js/*.js --fix && wp-scripts lint-js ./assets/js/web-components/*.js --fix && wp-scripts lint-js ./assets/js/widgets/*.js --fix && wp-scripts lint-js ./assets/js/recommendations/*.js --fix",
"prepare": "husky",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:codegen": "playwright codegen",
"test:sequential": "playwright test --project=sequential",
"test:parallel": "playwright test --project=parallel",
"test:playground": "PLAYGROUND=true playwright test",
"test": "npm run test:sequential && npm run test:parallel"
},
"dependencies": {
"driver.js": "^1.3.1"
}
}