-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
53 lines (53 loc) · 2.85 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
{
"name": "mythic",
"version": "1.0.0",
"description": "Mythic is a next-generation starter theme designed to help theme authors write elegant, intelligent, and modern code.",
"author": "Justin Tadlock",
"license": "GPL-2.0+",
"homepage": "https://themehybrid.com/themes/mythic",
"main": "resources/js/app.js",
"scripts": {
"build": "npm run prod && npm run i18n && npm run export",
"dev": "cross-env NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider 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_OPTIONS=--openssl-legacy-provider node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch:sync": "cross-env sync=1 NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env sync=1 NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "cross-env NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"export": "cross-env export=1 NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider node_modules/webpack/bin/webpack.js --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:styles:fix": "cross-env stylelint './resources/scss/**/*.scss' --syntax scss --fix",
"lint:scripts": "cross-env eslint './resources/js/**/*.js'",
"i18n": "npm run i18n:textdomain && npm run i18n:pot",
"i18n:textdomain": "npx wpi18n addtextdomain --exclude=vendor,node_modules,mythic",
"i18n:pot": "npx wpi18n makepot --exclude=vendor,node_modules,mythic",
"rename": "theme-claim"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justintadlock/mythic.git"
},
"bugs": {
"url": "https://github.com/justintadlock/mythic/issues"
},
"devDependencies": {
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "2.2.2",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"eslint": "^5.12.0",
"eslint-config-wordpress": "^2.0.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^2.4.0",
"laravel-mix": "^4.0.14",
"node-wp-i18n": "^1.2.2",
"postcss-preset-env": "^6.5.0",
"rimraf": "^2.6.3",
"sass": "^1.16.0",
"sass-loader": "^7.1.0",
"stylelint": "^9.9.0",
"stylelint-config-wordpress": "^13.1.0",
"theme-claim": "^0.1.2",
"vue-template-compiler": "^2.5.22"
}
}