Skip to content

Commit c86eb05

Browse files
authored
Merge pull request #291 from plausible/toggle_columns
Toggle columns
2 parents 850407c + 6499714 commit c86eb05

3 files changed

Lines changed: 236 additions & 207 deletions

File tree

package.json

Lines changed: 69 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,71 @@
11
{
2-
"name": "plausible-analytics",
3-
"version": "2.4.2",
4-
"description": "",
5-
"main": "index.js",
6-
"scripts": {
7-
"start": "npm install && npm run watch",
8-
"dev": "cross-env NODE_ENV=development webpack",
9-
"production": "cross-env NODE_ENV=production webpack",
10-
"build": "npm run production",
11-
"lint:php": "./vendor/bin/phpcs --colors --standard=phpcs.ruleset.xml",
12-
"lint:php:fix": "./vendor/bin/phpcbf --colors --standard=phpcs.ruleset.xml",
13-
"lint:textdomain": "node ./wp-textdomain.js",
14-
"lint:css": "stylelint assets/src/**/*.css",
15-
"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"
16-
},
17-
"repository": {
18-
"type": "git",
19-
"url": "git+https://github.com/plausible/wordpress.git"
20-
},
21-
"author": "PlausibleHQ",
22-
"license": "ISC",
23-
"bugs": {
24-
"url": "https://github.com/plausible/wordpress/issues"
25-
},
26-
"homepage": "https://github.com/plausible/wordpress#readme",
27-
"devDependencies": {
28-
"@babel/core": "^7.18.13",
29-
"@babel/plugin-syntax-jsx": "^7.18.6",
30-
"@babel/plugin-transform-react-jsx": "^7.18.10",
31-
"@babel/plugin-transform-runtime": "^7.18.10",
32-
"@babel/preset-env": "^7.22.20",
33-
"@babel/runtime": "^7.18.9",
34-
"@openapitools/openapi-generator-cli": "*",
35-
"@prettier/plugin-php": "^0.18.9",
36-
"@tailwindcss/forms": "^0.5.7",
37-
"@wordpress/stylelint-config": "^20.0.2",
38-
"autoprefixer": "^10.4.16",
39-
"babel-loader": "^8.2.5",
40-
"clean-webpack-plugin": "^4.0.0",
41-
"copy-webpack-plugin": "^11.0.0",
42-
"cross-env": "^7.0.3",
43-
"css-loader": "^6.7.1",
44-
"css-minimizer-webpack-plugin": "^4.2.2",
45-
"cssnano": "^5.1.13",
46-
"cssnano-preset-advanced": "^5.3.8",
47-
"expose-loader": "^4.0.0",
48-
"file-loader": "^6.2.0",
49-
"husky": "^4.3.5",
50-
"imagemin-webpack-plugin": "*",
51-
"lint-staged": "^9.5.0",
52-
"mini-css-extract-plugin": "^1.6.2",
53-
"postcss": "^8.4.31",
54-
"postcss-loader": "^7.3.3",
55-
"prettier": "^2.7.1",
56-
"script-loader": "^0.7.2",
57-
"style-loader": "^3.3.1",
58-
"stylelint": "^14.11.0",
59-
"stylelint-config-prettier": "^9.0.3",
60-
"stylelint-config-standard-scss": "^4.0.0",
61-
"stylelint-prettier": "^2.0.0",
62-
"stylelint-scss": "^4.2.0",
63-
"tailwindcss": "^3.3.5",
64-
"webpack": "^5.88.2",
65-
"webpack-cli": "^4.10.0",
66-
"webpack-rtl-plugin": "^2.0.0",
67-
"wp-pot": "^1.10.2",
68-
"wp-textdomain": "^1.0.1"
69-
}
2+
"name": "plausible-analytics",
3+
"version": "2.4.2",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "npm install && npm run watch",
8+
"dev": "cross-env NODE_ENV=development webpack",
9+
"production": "cross-env NODE_ENV=production webpack",
10+
"build": "npm run production",
11+
"watch": "cross-env webpack --watch",
12+
"lint:php": "./vendor/bin/phpcs --colors --standard=phpcs.ruleset.xml",
13+
"lint:php:fix": "./vendor/bin/phpcbf --colors --standard=phpcs.ruleset.xml",
14+
"lint:textdomain": "node ./wp-textdomain.js",
15+
"lint:css": "stylelint assets/src/**/*.css",
16+
"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"
17+
},
18+
"repository": {
19+
"type": "git",
20+
"url": "git+https://github.com/plausible/wordpress.git"
21+
},
22+
"author": "PlausibleHQ",
23+
"license": "ISC",
24+
"bugs": {
25+
"url": "https://github.com/plausible/wordpress/issues"
26+
},
27+
"homepage": "https://github.com/plausible/wordpress#readme",
28+
"devDependencies": {
29+
"@babel/core": "^7.18.13",
30+
"@babel/plugin-syntax-jsx": "^7.18.6",
31+
"@babel/plugin-transform-react-jsx": "^7.18.10",
32+
"@babel/plugin-transform-runtime": "^7.18.10",
33+
"@babel/preset-env": "^7.22.20",
34+
"@babel/runtime": "^7.18.9",
35+
"@openapitools/openapi-generator-cli": "*",
36+
"@prettier/plugin-php": "^0.18.9",
37+
"@tailwindcss/forms": "^0.5.7",
38+
"@wordpress/stylelint-config": "^20.0.2",
39+
"autoprefixer": "^10.4.16",
40+
"babel-loader": "^8.2.5",
41+
"clean-webpack-plugin": "^4.0.0",
42+
"copy-webpack-plugin": "^11.0.0",
43+
"cross-env": "^7.0.3",
44+
"css-loader": "^6.7.1",
45+
"css-minimizer-webpack-plugin": "^4.2.2",
46+
"cssnano": "^5.1.13",
47+
"cssnano-preset-advanced": "^5.3.8",
48+
"expose-loader": "^4.0.0",
49+
"file-loader": "^6.2.0",
50+
"husky": "^4.3.5",
51+
"imagemin-webpack-plugin": "*",
52+
"lint-staged": "^9.5.0",
53+
"mini-css-extract-plugin": "^1.6.2",
54+
"postcss": "^8.4.31",
55+
"postcss-loader": "^7.3.3",
56+
"prettier": "^2.7.1",
57+
"script-loader": "^0.7.2",
58+
"style-loader": "^3.3.1",
59+
"stylelint": "^14.11.0",
60+
"stylelint-config-prettier": "^9.0.3",
61+
"stylelint-config-standard-scss": "^4.0.0",
62+
"stylelint-prettier": "^2.0.0",
63+
"stylelint-scss": "^4.2.0",
64+
"tailwindcss": "^3.3.5",
65+
"webpack": "^5.88.2",
66+
"webpack-cli": "^4.10.0",
67+
"webpack-rtl-plugin": "^2.0.0",
68+
"wp-pot": "^1.10.2",
69+
"wp-textdomain": "^1.0.1"
70+
}
7071
}

0 commit comments

Comments
 (0)