forked from ManiruzzamanAkash/wp-react-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.46 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": "jobplace",
"version": "0.8.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",
"start": "wp-scripts start",
"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": "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"
},
"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/data": "^6.15.0",
"@wordpress/e2e-test-utils": "^7.11.0",
"@wordpress/e2e-test-utils-playwright": "^0.1.0",
"@wordpress/e2e-tests": "^4.9.2",
"@wordpress/eslint-plugin": "^12.4.0",
"@wordpress/i18n": "^4.10.0",
"@wordpress/jest-preset-default": "^8.5.1",
"@wordpress/scripts": "^23.7.1",
"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",
"jest-circus": "^27.5.1",
"jest-puppeteer": "^6.1.1",
"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",
"tailwind-merge": "^1.8.0",
"tailwindcss": "^3.1.7",
"ts-jest": "^28.0.8"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^35.3.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"
}
}