-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.94 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
{
"name": "forecast",
"version": "1.0.0",
"description": "Forecast by WP Perf",
"author": "Peter Toi <[email protected]>",
"license": "GPL-2.0+",
"homepage": "https://wp-perf.io",
"repository": "[email protected]:wp-perf/forecast.git",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "npm run lint:styles && npm run lint:scripts",
"lint:styles": "cross-env stylelint './resources/scss/**/*.scss' --syntax scss",
"lint:scripts": "cross-env eslint './resources/js/**/*.js'",
"i18n": "npm run i18n:textdomain && npm run i18n:pot",
"i18n:textdomain": "npx wpi18n addtextdomain --exclude=node_modules",
"i18n:pot": "npx wpi18n makepot --domain-path=/resources/lang"
},
"devDependencies": {
"@wordpress/browserslist-config": "^2.6.0",
"@wordpress/eslint-plugin": "^2.4.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "2.0.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"laravel-mix": "^4.1.2",
"node-wp-i18n": "^1.2.3",
"postcss-custom-properties": "^9.0.2",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"sass": "^1.22.9",
"sass-loader": "7.*",
"stylelint": "^10.1.0",
"stylelint-config-wordpress": "^14.0.0",
"vue-template-compiler": "^2.6.10",
"webpack-manifest-plugin": "^2.0.4"
},
"dependencies": {}
}