-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.54 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
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
84
85
86
{
"name": "jobplace",
"version": "1.0.0",
"description": "A simple starter kit to work in WordPress plugin development using WordPress Rest API, WP-script and many more...",
"main": "src/index.tsx",
"scripts": {
"build": "wp-scripts build --experimental-modules --webpack-copy-php",
"start": "wp-scripts start --experimental-modules --webpack-copy-php",
"start:hot": "wp-scripts start --hot",
"test:unit": "wp-scripts test-unit-js --config jest-unit.config.js",
"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",
"makepot": "wp i18n make-pot --domain='jobplace' --exclude='node_modules,.storybook,src,vendor,assets' . --headers='{\"Last-Translator\":\"manirujjamanakash@gmail.com\",\"Report-Msgid-Bugs-To\":\"https://github.com/ManiruzzamanAkash/wp-react-kit/issues\"}' --file-comment=\"Copyright (c) $(date +'%Y') Maniruzzaman Akash. All Rights Reserved.\" languages/jobplace.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",
"test:e2e:prepare": "npm run build && npm run env:start && npx playwright install chromium",
"test:e2e": "playwright test --reporter=list",
"test:e2e:watch": "playwright test --debug",
"test:e2e:ui": "playwright test --ui",
"test:e2e:tracing": "playwright test --trace on"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@playwright/test": "^1.34.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/ckeditor__ckeditor5-build-classic": "^29.0.1",
"@types/enzyme": "^3.10.12",
"@types/jest": "^28.1.7",
"@types/wordpress__block-editor": "^7.0.0",
"@types/wordpress__data": "^6.0.1",
"@wordpress/api-fetch": "^6.12.0",
"@wordpress/block-editor": "^10.5.0",
"@wordpress/components": "^22.1.0",
"@wordpress/data": "^6.15.0",
"@wordpress/dataviews": "^10.3.0",
"@wordpress/e2e-test-utils": "^7.11.0",
"@wordpress/e2e-test-utils-playwright": "^0.25.0",
"@wordpress/e2e-tests": "^9.12.0",
"@wordpress/eslint-plugin": "^12.4.0",
"@wordpress/interactivity": "^6.15.0",
"@wordpress/i18n": "^4.10.0",
"@wordpress/jest-preset-default": "^8.5.1",
"@wordpress/scripts": "^32.3.0",
"autoprefixer": "^10.4.8",
"babel-jest": "^28.1.3",
"babel-plugin-inline-json-import": "^0.3.2",
"chalk": "^4.1.2",
"cssnano": "^5.1.12",
"enzyme": "^3.11.0",
"fs-extra": "^10.1.0",
"glob": "^11.0.0",
"jest-circus": "^27.5.1",
"jest-puppeteer": "^11.0.0",
"lodash": "^4.17.21",
"postcss": "^8.4.14",
"puppeteer-testing-library": "^0.6.0",
"react-router-dom": "^6.3.0",
"replace-in-file": "^6.3.5",
"ts-jest": "^28.0.8"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^28.0.0",
"@ckeditor/ckeditor5-react": "^5.0.2",
"@fortawesome/fontawesome-common-types": "^6.1.2",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.6.6",
"date-fns": "^2.29.1",
"html-react-parser": "^3.0.1",
"react-date-range": "^1.4.0",
"react-paginate": "^8.1.3",
"react-scroll": "^1.8.8",
"react-select": "^5.4.0",
"react-toastify": "^9.0.8",
"sweetalert2": "^11.6.8"
}
}