forked from plausible/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.83 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
{
"name": "plausible-analytics",
"version": "1.2.0",
"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:scss & npm run lint:php",
"lint:js": "eslint assets/src/**/*.js",
"lint:js-fix": "eslint assets/src/**/*.js --fix",
"lint:php": "./vendor/bin/phpcs -v --colors --standard=phpcs.ruleset.xml",
"lint:php:fix": "./vendor/bin/phpcbf -v --colors --standard=phpcs.ruleset.xml",
"lint:textdomain": "node ./wp-textdomain.js",
"lint:scss": "stylelint assets/src/**/*.scss"
},
"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.12.10",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@prettier/plugin-php": "^0.12.0",
"autoprefixer": "^9.5.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"cssnano-preset-advanced": "^4.0.6",
"eslint": "^5.15.3",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-react": "^7.21.5",
"expose-loader": "^0.7.5",
"file-loader": "^3.0.1",
"husky": "^4.3.5",
"imagemin-webpack-plugin": "^2.4.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.19.1",
"sass-loader": "^7.1.0",
"script-loader": "^0.7.2",
"style-loader": "^1.3.0",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^8.0.0",
"stylelint-config-wordpress": "^13.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.3.0",
"webpack-rtl-plugin": "^2.0.0",
"wp-pot": "^1.9.8",
"wp-textdomain": "^1.0.1"
},
"dependencies": {}
}