-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.44 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
{
"name": "modycloud-invoice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "pnpm build:plugin && pnpm build:blocks",
"build:plugin": "wp-scripts build --webpack-src-dir=resources --webpack-copy-php --output-path=dist --config config/webpack.config.js",
"build:blocks": "wp-scripts build --webpack-src-dir=resources/blocks --webpack-copy-php --output-path=blocks --config config/blocks.webpack.config.js",
"dev": "concurrently \"pnpm run dev:plugin\" \"pnpm run dev:blocks\"",
"dev:plugin": "wp-scripts start --webpack-src-dir=resources --webpack-copy-php --output-path=dist --config config/webpack.config.js",
"dev:blocks": "wp-scripts start --webpack-src-dir=resources/blocks --webpack-copy-php --output-path=blocks --config config/blocks.webpack.config.js",
"lint": "pnpm lint:css && pnpm lint:js && pnpm lint:jsx && composer run lint",
"lint:css": "wp-scripts lint-style 'resources/**/*.scss'",
"lint:js": "wp-scripts lint-js 'resources/**/*.js'",
"lint:jsx": "wp-scripts lint-js 'resources/**/*.jsx'"
},
"repository": {
"type": "git",
"url": "https://github.com/ModySolutions/cloud-app"
},
"author": "Mody Solutions",
"license": "ISC",
"bugs": {
"url": "https://github.com/orgs/ModySolutions/projects/2"
},
"homepage": "https://github.com/ModySolutions/cloud-app",
"dependencies": {
"@wordpress/block-editor": "^14.16.0",
"@wordpress/blocks": "^14.10.0",
"@wordpress/icons": "^10.21.0",
"@wordpress/scripts": "^30.14.0",
"@babel/core": "^7.26.10",
"@babel/preset-react": "^7.26.3",
"@wordpress/components": "^29.7.0",
"@wordpress/dom-ready": "^4.21.0",
"@wordpress/element": "^6.21.0",
"@wordpress/i18n": "^5.21.0",
"aos": "^2.3.4",
"babel-loader": "^10.0.0",
"country-state-city": "^3.2.1",
"prop-types": "^15.8.1",
"qrcode.react": "^4.2.0",
"react-datepicker": "^8.2.1",
"react-input-mask": "^2.0.4",
"react-router-dom": "^7.4.0",
"react-to-pdf": "^1.0.1",
"react-toastify": "^11.0.5",
"swiper": "^11.2.6",
"validator": "^13.15.0"
},
"devDependencies": {
"concurrently": "^9.1.2",
"css-loader": "^7.1.2",
"sass-loader": "^16.0.5",
"scss-loader": "^0.0.1",
"style-loader": "^4.0.0",
"stylelint": "^16.17.0",
"stylelint-config-recommended": "^15.0.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-manifest-plugin": "^5.0.1"
}
}