-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ozopanel",
"version": "0.1.0",
"description": "A customization plugin for WordPress",
"author": "Rakib <therakib7@gmail.com>",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Plugin",
"Editor",
"React",
"Redux",
"TailwindCSS"
],
"homepage": "https://github.com/ozowp/ozopanel",
"repository": {
"type": "git",
"url": "git+https://github.com/ozowp/ozopanel.git"
},
"bugs": {
"url": "https://github.com/ozowp/ozopanel/issues"
},
"main": "src/index.tsx",
"dependencies": {
"@tanstack/react-query": "^5.8.4",
"react-router-dom": "^6.21.3",
"react-toastify": "^9.1.3"
},
"devDependencies": {
"@automattic/i18n-loader-webpack-plugin": "^2.0.48",
"@playwright/test": "^1.41.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@wordpress/element": "^5.31.0",
"@wordpress/eslint-plugin": "^17.11.0",
"@wordpress/jest-preset-default": "^11.25.0",
"@wordpress/scripts": "^27.5.0",
"autoprefixer": "^10.4.16",
"chalk": "^5.3.0",
"cssnano": "^5.1.12",
"eslint": "^8.45.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"md5-es": "^1.8.2",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"replace-in-file": "^6.3.5",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.1.1"
},
"scripts": {
"start": "wp-scripts start",
"start:hot": "wp-scripts start --hot",
"build": "wp-scripts build",
"wp-env": "wp-env",
"env:start": "wp-env start",
"env:clean": "wp-env clean",
"env:destroy": "wp-env destroy",
"env:start:coverage": "wp-env start -- --xdebug=profile,trace,debug",
"env:stop": "wp-env stop",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"test:unit": "wp-scripts test-unit-js --config jest-unit.config.js",
"test:e2e": "npx playwright test --config ./tests/e2e/playwright.config.ts --reporter=list",
"test:e2e:watch": "npx playwright test --config ./tests/e2e/playwright.config.ts --debug",
"test:e2e:ui": "npx playwright test --config ./tests/e2e/playwright.config.ts --ui",
"test:e2e:tracing": "npx playwright test --config ./tests/e2e/playwright.config.ts --trace on",
"check-licenses": "wp-scripts check-licenses --prod --gpl2",
"makepot": "wp i18n make-pot --domain='ozopanel' --exclude='node_modules,src,vendor,assets' . --headers='{\"Last-Translator\":\"therakib7@gmail.com\",\"Report-Msgid-Bugs-To\":\"https://github.com/ozowp/ozopanel/issues\"}' --file-comment=\"Copyright (c) $(date +'%Y') Rakibul Hasan. All Rights Reserved.\" languages/ozopanel.pot",
"zip": "node assets/js/zip",
"version": "node assets/js/version-replace",
"release": "npm run build && npm run makepot && npm run version && npm run zip"
}
}