-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 3.96 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
{
"name": "virtuoso",
"version": "1.0.9",
"description": "Your all encompassing Genesis child theme",
"author": "ErhardLabs",
"license": "GPL-2.0+",
"main": "assets/js/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ErhardLabs/virtuoso.git"
},
"scripts": {
"build": "npm run prod && npm run i18n && npm run export",
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch:sync": "cross-env sync=1 NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env sync=1 NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"export": "cross-env export=1 NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "npm run lint:styles && npm run lint:scripts && npm run lint:php",
"lint:styles": "cross-env stylelint './resources/scss/**/*.scss' --syntax scss",
"lint:scripts": "cross-env eslint './resources/js/**/*.js'",
"lint:php": "cross-env ./vendor/bin/phpcs . --runtime-set testVersion 5.6- -s",
"i18n": "npm run i18n:textdomain && npm run i18n:pot",
"i18n:textdomain": "npx wpi18n addtextdomain --exclude=vendor,node_modules",
"i18n:pot": "npx wpi18n makepot",
"update:packages": "node wipe-dependencies.js && rm -rf node_modules && npm update --save-dev && npm update --save",
"@comment r": "Update changelog and create a new release.",
"r:M": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"r:m": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"r:p": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"@comment v": "Update changelog and version but DO NOT create a new release.",
"v:M": "git add . && git commit -m 'updated version' && changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin",
"v:m": "git add . && git commit -m 'updated version' && changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin",
"v:p": "git add . && git commit -m 'updated version' && changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"copy-webpack-plugin": "^6.0.1",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"fs-extra": "^9.0.0",
"imagemin": "^8.0.0",
"laravel-mix": "^6.0.18",
"node-wp-i18n": "^1.2.3",
"postcss": "^8.2.14",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"resolve-url-loader": "^3.1.3",
"restart": "^2.0.0",
"rimraf": "^3.0.2",
"sass": "^1.26.5",
"sass-loader": "^7.1.0",
"sass-rem": "^1.2.2",
"stylelint": "^13.13.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.36.2"
},
"dependencies": {
"animate.css": "^4.1.0",
"body-scroll-lock": "^3.0.2",
"component-install": "^1.0.1",
"generate-changelog": "^1.8.0",
"normalize.css": "^8.0.1",
"slick-carousel": "^1.8.1",
"waypoints": "^4.0.1"
}
}