-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 2.1 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
{
"name": "astratic-blocks",
"namespace": "asbl",
"version": "0.0.1",
"author": {
"name": "wpserved",
"email": "[email protected]",
"url:": "https://wpserved.com/"
},
"private": true,
"license": "GPL2",
"browserslist": [
"last 2 versions",
"android 4",
"opera 12"
],
"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": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --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 --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build": "npm run rmdist && npm run rmbuild && npm run production && npm run production -- --env.mixfile=webpack.build.mix.js && node webpack.build.clean.mix.js",
"rmdist": "rimraf dist",
"rmbuild": "rimraf build",
"translate:pot": "wp i18n make-pot . ./resources/lang/astratic-blocks.pot --ignore-domain --include=\"app,resources,wps\" --exclude=\"build\"",
"translate:js": "wp i18n make-json ./resources/lang --pretty-print"
},
"engines": {
"node": ">= 12.1.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.17.12",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "2.0.1",
"cross-env": "^5.2.0",
"laravel-mix": "^4.0.15",
"laravel-mix-copy-watched": "^2.0.1",
"laravel-mix-merge-manifest": "^0.1.2",
"resolve-url-loader": "2.3.1",
"rimraf": "^2.6.3",
"sass": "^1.17.4",
"sass-loader": "7.*",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"classnames": "^2.2.6"
}
}