-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.98 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
72
73
74
75
76
77
78
{
"name": "jesus-film-project",
"version": "0.0.0-development",
"description": "Default theme for jesusfilm.org",
"repository": {
"type": "git",
"url": "https://github.com/JesusFilm/jesus-film-www.git"
},
"author": "David Jensen",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@wordpress/eslint-plugin": "^9.0.5",
"@wordpress/icons": "^6.2.0",
"@wordpress/stylelint-config": "^19.0.4",
"babel-eslint": "^10.1.0",
"bourbon": "^7.0.0",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.3.0",
"classnames": "^2.3.1",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.0",
"cssnano": "^5.0.0",
"eslint": "^7.0.0",
"genesis-theme-claim": "^0.6.0",
"husky": "^6.0.0",
"imagemin-webpack-plugin": "^2.4.0",
"laravel-mix": "^6.0.19",
"laravel-mix-svg-sprite": "^1.0.2",
"lodash": "^4.17.21",
"node-wp-i18n": "^1.2.5",
"postcss-convert-rem-to-pixel": "^0.0.0",
"postcss-preset-env": "^5.3.0",
"prepend-file": "^2.0.1",
"prettier": "^2.3.0",
"prettier-stylelint": "^0.4.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"resolve-url-loader": "^3.1.0",
"rimraf": "^3.0.2",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"semantic-release": "^19.0.5",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"stylelint": "^13.7.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-order": "^4.1.0",
"theme-claim": "^0.1.2",
"vue-template-compiler": "^2.6.12",
"webpack-cli": "^4.7.0"
},
"theme": {
"name": "Jesus Film Project",
"uri": "https://dkjensen.com/",
"authoruri": "https://dkjensen.com/",
"domainpath": "/assets/lang",
"textdomain": "jesus-film-project",
"template": "genesis"
},
"scripts": {
"build": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"build:prod": "cross-env NODE_ENV=production webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env sync=1 NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --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,tests,node_modules",
"i18n:pot": "npx wpi18n makepot --domain-path=assets/lang",
"rename": "genesis-theme-claim",
"prepare": "husky install",
"plugin-zip": "bash ./bin/build-zip.sh"
}
}