-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
84 lines (84 loc) · 3.14 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
84
{
"name": "article-gen",
"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",
"test:e2e": "wp-scripts test-e2e",
"test:e2e:watch": "wp-scripts test-e2e -- --puppeteer-interactive",
"wp-env": "wp-env",
"env:start": "wp-env start",
"env:start:coverage": "wp-env start -- --xdebug=profile,trace,debug",
"env:stop": "wp-env stop",
"makepot": "wp i18n make-pot --domain='article-gen' --exclude='node_modules,.storybook,src,vendor,assets' . --headers='{\"Last-Translator\":\"cleissonbarbosa68@gmail.com\",\"Report-Msgid-Bugs-To\":\"https://github.com/CleissonBarbosa/article-generator/issues\"}' --file-comment=\"Copyright (c) $(date +'%Y') Cleisson Barbosa. All Rights Reserved.\" languages/article-gen.pot",
"zip": "node assets/js/zip",
"version": "node assets/js/version-replace",
"release": "yarn build && yarn makepot && yarn zip"
},
"author": "Cleisson Barbosa <cleissonbarbosa68@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^12.1.5",
"@types/ckeditor__ckeditor5-build-classic": "^29.0.1",
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.5.2",
"@types/uuid": "^9.0.1",
"@types/webspeechapi": "^0.0.29",
"@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-tests": "^7.9.0",
"@wordpress/eslint-plugin": "^12.4.0",
"@wordpress/i18n": "^4.10.0",
"@wordpress/jest-preset-default": "^11.9.0",
"@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",
"typescript": "^5.0.4"
},
"dependencies": {
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/regjsgen": "^0.8.0",
"@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",
"openai": "^3.2.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.4.8",
"uuid": "^9.0.0"
}
}