forked from rtCamp/godam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.91 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "godam",
"version": "1.3.5",
"description": "A WordPress plugin to manage digital assets",
"private": true,
"author": "rtCamp",
"license": "GPL-2.0-or-later",
"keywords": [
"rtcamp",
"wp-plugin",
"feature-plugin"
],
"homepage": "https://github.com/rtCamp/features-plugin-skeleton#readme",
"repository": {
"type": "git",
"url": "https://github.com/rtCamp/features-plugin-skeleton.git"
},
"bugs": {
"url": "https://github.com/rtCamp/features-plugin-skeleton/issues"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@monaco-editor/react": "^4.7.0",
"@reduxjs/toolkit": "^2.5.1",
"@tailwindcss/typography": "^0.5.16",
"@uppy/core": "4.4.4",
"@uppy/dashboard": "4.3.3",
"@uppy/golden-retriever": "4.1.1",
"@uppy/screen-capture": "4.2.2",
"@uppy/webcam": "4.1.2",
"@uppy/xhr-upload": "4.3.3",
"@wordpress/block-editor": "^14.13.0",
"@wordpress/blocks": "^14.7.0",
"@wordpress/components": "^29.4.0",
"@wordpress/i18n": "^5.18.0",
"@wordpress/icons": "^10.18.0",
"@wordpress/server-side-render": "^5.18.0",
"analytics": "^0.8.16",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"flv.js": "^1.6.2",
"isomorphic-dompurify": "^2.21.0",
"quill": "^2.0.3",
"react": "^18.3.1",
"react-bootstrap-icons": "1.11.5",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-rnd": "^10.4.14",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.5",
"video.js": "^8.21.0",
"videojs-contrib-ads": "^7.5.2",
"videojs-contrib-quality-levels": "4.1.0",
"videojs-contrib-quality-menu": "^1.0.3",
"videojs-flvjs-es6": "^1.0.1",
"videojs-ima": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@wordpress/babel-preset-default": "^7.16.0",
"@wordpress/browserslist-config": "^5.15.0",
"@wordpress/env": "^6.0.0",
"@wordpress/eslint-plugin": "^14.7.0",
"@wordpress/jest-preset-default": "^11.3.0",
"@wordpress/scripts": "^30.11.0",
"browserslist": "^4.21.5",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.40.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"file-loader": "^6.2.0",
"husky": "9.1.7",
"jest-silent-reporter": "^0.5.0",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.15",
"webpack-remove-empty-scripts": "^1.0.3"
},
"scripts": {
"start:blocks": "wp-scripts start --config ./node_modules/@wordpress/scripts/config/webpack.config.js --webpack-src-dir=./assets/src/blocks/ --output-path=./assets/build/blocks/",
"start:js": "wp-scripts start --config ./webpack.config.js",
"start": "npm-run-all --parallel start:*",
"build:dev": "cross-env NODE_ENV=development npm-run-all 'build:!(dev|prod)'",
"build:prod": "cross-env NODE_ENV=production npm-run-all 'build:!(dev|prod)'",
"build:blocks": "wp-scripts build --config ./node_modules/@wordpress/scripts/config/webpack.config.js --webpack-src-dir=./assets/src/blocks/ --output-path=./assets/build/blocks/",
"build:js": "wp-scripts build --config ./webpack.config.js",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "npm run lint:css --fix --",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "npm run lint:js --fix --",
"lint:js:report": "npm run lint:js -- --output-file lint-js-report.json --format json .",
"lint:php": "vendor/bin/phpcs",
"lint:php:fix": "vendor/bin/phpcbf",
"lint:package-json": "wp-scripts lint-pkg-json --ignorePath .packagejsonignore",
"lint:staged": "lint-staged",
"install:husky": "./bin/husky.sh --install",
"remove:husky": "./bin/husky.sh --remove",
"wp-env": "wp-env",
"prepare": "husky"
}
}