-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.57 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": "luxe",
"version": "1.0.0",
"description": "Luxe is a WordPress starter theme using a modern workflow and best practices.",
"main": "resources/js/app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config ./config/webpack.dev.js",
"watch": "cross-env NODE_ENV=development webpack --watch --config ./config/webpack.dev.js",
"production": "cross-env NODE_ENV=production webpack --config ./config/webpack.prod.js",
"build": "npm run production && npm run i18n",
"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 .",
"i18n": "npm run i18n:textdomain && npm run i18n:pot",
"i18n:textdomain": "npx node-wp-i18n addtextdomain --exclude=vendor,node_modules",
"i18n:pot": "npx node-wp-i18n makepot",
"rename": "theme-claim --config='./config/rename.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettsmason/luxe.git"
},
"author": "Brett Mason",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/brettsmason/luxe/issues"
},
"homepage": "https://github.com/brettsmason/luxe#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@wordpress/eslint-plugin": "^3.3.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.13",
"browser-sync-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.0",
"css-loader": "^4.2.1",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"fibers": "^5.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.9.0",
"nth-grid": "github:brettsmason/nth-grid",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.32.5",
"sass-loader": "^8.0.2",
"sass-mq": "^5.0.1",
"stylelint": "^12.0.1",
"stylelint-config-wordpress": "^17.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.14.2",
"terser-webpack-plugin": "^4.2.3",
"theme-claim": "^0.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-fix-style-only-entries": "^0.4.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^4.2.2",
"webpackbar": "^4.0.0"
},
"dependencies": {
"core-js": "^3.6.5"
}
}