-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·65 lines (65 loc) · 2.49 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
{
"name": "optimole-wp",
"version": "3.13.8",
"description": "Cloud-based image optimization service - WordPress Integration",
"repository": {
"type": "git",
"url": "git+https://github.com/Codeinwp/optimole-wp.git"
},
"keywords": [
"wordpress-plugin"
],
"textdomain": "optimole-wp",
"category": "plugins",
"author": "ThemeIsle <[email protected]>",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/Codeinwp/optimole-wp/issues"
},
"scripts": {
"build:dashboard": "wp-scripts build assets/src/dashboard/index.js --output-path=assets/build/dashboard",
"dev:dashboard": "wp-scripts start assets/src/dashboard/index.js --output-path=assets/build/dashboard --hot --allowed-hosts all",
"build-dev:dashboard": "NODE_ENV=development wp-scripts build assets/src/dashboard/index.js --output-path=assets/build/dashboard",
"build:media": "wp-scripts build assets/src/media/*.js --output-path=assets/build/media",
"dev:media": "wp-scripts start assets/src/media/*.js --output-path=assets/build/media",
"build-dev:media": "NODE_ENV=development wp-scripts build assets/src/media/*.js --output-path=assets/build/media",
"build": "npm-run-all build:*",
"dev": "npm-run-all --parallel dev:*",
"build-dev": "npm-run-all build-dev:*",
"lint": "wp-scripts lint-js assets/src",
"format": "wp-scripts lint-js assets/src --fix",
"release": "semantic-release --debug",
"cypress:open": "cypress open",
"cypress:run": "cd cypress && docker-compose up --exit-code-from cypress",
"dist": "./bin/dist.sh"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@wordpress/components": "^25.14.0",
"@wordpress/data": "^9.18.0",
"@wordpress/element": "^5.25.0",
"@wordpress/icons": "^9.39.0",
"@wordpress/scripts": "^26.19.0",
"conventional-changelog-simple-preset": "^1.0.14",
"cypress": "^13.6.1",
"eslint-config-wordpress": "^2.0.0",
"grunt": "^1.0.4",
"grunt-version": "^1.3.2",
"grunt-wp-readme-to-markdown": "^2.0.1",
"npm-run-all": "^4.1.5",
"replace-in-file": "^5.0.2",
"semantic-release": "^17.4.3",
"semantic-release-slack-bot": "^2.1.0",
"stylelint": "^8.2.0",
"stylelint-config-recommended": "^1.0.0",
"tailwindcss": "^3.3.2"
},
"dependencies": {
"@formbricks/js": "^2.0.0",
"classnames": "^2.3.2",
"react-compare-image": "^3.4.0",
"usehooks-ts": "^2.9.1"
}
}