-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
79 lines (79 loc) · 3.19 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
{
"name": "plausible-analytics",
"version": "1.2.5",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm install && npm run watch",
"dev": "cross-env NODE_ENV=development webpack",
"production": "cross-env NODE_ENV=production webpack",
"build": "npm run production",
"watch": "cross-env webpack --watch",
"lint": "npm run lint:js & npm run lint:css & npm run lint:php",
"lint:js": "eslint assets/src/**/*.js",
"lint:js-fix": "eslint assets/src/**/*.js --fix",
"lint:php": "./vendor/bin/phpcs --colors --standard=phpcs.ruleset.xml",
"lint:php:fix": "./vendor/bin/phpcbf --colors --standard=phpcs.ruleset.xml",
"lint:textdomain": "node ./wp-textdomain.js",
"lint:css": "stylelint assets/src/**/*.css",
"artifact": "mkdir release && mkdir release/plausible-analytics && rsync -rc --exclude-from=\"./.distignore\" \"./\" release/plausible-analytics/ --delete --delete-excluded && cd release && zip -r ../plausible-analytics.zip * && cd .. && rm -rf release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imehul0810/plausible-analytics-wp.git"
},
"author": "PlausibleHQ",
"license": "ISC",
"bugs": {
"url": "https://github.com/mehul0810/plausible-analytics-wp/issues"
},
"homepage": "https://github.com/mehul0810/plausible-analytics-wp#readme",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.22.20",
"@babel/runtime": "^7.18.9",
"@es-joy/jsdoccomment": "0.31.0",
"@prettier/plugin-php": "^0.18.9",
"@tailwindcss/forms": "^0.5.7",
"@wordpress/eslint-plugin": "^12.5.0",
"@wordpress/stylelint-config": "^20.0.2",
"autoprefixer": "^10.4.16",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"cssnano": "^5.1.13",
"cssnano-preset-advanced": "^5.3.8",
"eslint": "^8.23.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-react": "^7.30.1",
"expose-loader": "^4.0.0",
"file-loader": "^6.2.0",
"husky": "^4.3.5",
"imagemin-webpack-plugin": "^2.4.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^1.6.2",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^2.7.1",
"script-loader": "^0.7.2",
"style-loader": "^3.3.1",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.2.0",
"tailwindcss": "^3.3.5",
"webpack": "^5.88.2",
"webpack-cli": "^4.10.0",
"webpack-rtl-plugin": "^2.0.0",
"wp-pot": "^1.10.2",
"wp-textdomain": "^1.0.1"
}
}