-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.15 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "DebtCollective",
"version": "2.1.0",
"private": true,
"description": "Custom WordPress theme based on wd_s.",
"author": "Debt Collective <devs@debtcollective.org>",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Theme"
],
"homepage": "https://github.com/debtcollective/dotorg-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/debtcollective/dotorg-theme.git"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.6",
"@babel/core": "^7.15.5",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/html": "^6.3.8",
"@storybook/preset-scss": "^1.0.3",
"@wordpress/blocks": "^11.1.0",
"@wordpress/i18n": "^4.2.2",
"@wordpress/prettier-config": "^1.1.0",
"@wordpress/scripts": "^17.1.0",
"babel-loader": "^8.2.2",
"browser-sync": "^2.27.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "6.4.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "1.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^36.0.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-webpack-plugin": "^2.5.4",
"imagemin-webpack-plugin": "^2.4.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.6.2",
"npm-run-all": "^4.1.5",
"postcss-loader": "4.2.0",
"postcss-preset-env": "^6.7.0",
"prettier": "prettier@npm:wp-prettier@latest",
"prettier-eslint-cli": "^5.0.1",
"sass": "^1.39.0",
"sass-loader": "10.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-webpack-plugin": "^2.2.2",
"svg-spritemap-webpack-plugin": "3.9.1",
"url-loader": "^4.1.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production wp-scripts build --config webpack.prod.js",
"build:dev": "cross-env NODE_ENV=development wp-scripts build --config webpack.prod.js",
"build:pot": "composer run-script pot",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"dev": "npm run watch",
"format": "run-p format:*",
"format:css": "npx prettier '**/*.scss' --write && npm run lint:css -- --fix",
"format:js": "wp-scripts format && npm run lint:js -- --fix",
"format:md": "npx markdownlint-cli . --fix",
"format:php": "composer run-script format",
"lint": "run-p lint:*",
"lint:css": "wp-scripts lint-style '**/*.scss'",
"lint:js": "wp-scripts lint-js",
"lint:md": "wp-scripts lint-md-docs",
"lint:php": "composer run-script lint",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"postinstall": "composer install --quiet && npm run build",
"start": "cross-env NODE_ENV=development wp-scripts start",
"storybook": "start-storybook",
"sync": "browser-sync start --https --proxy 'http://localhost:8000' --no-open --files 'build/*.*, **/*.html, **/*.php, !node_modules/**/*.html'",
"watch": "run-p start sync"
},
"dependencies": {
"@tannerhodges/match-height": "^1.1.3",
"eq.js": "^1.9.0",
"hashquery": "^1.0.0",
"masonry-layout": "^4.2.2",
"matchheight": "^0.1.2",
"sticky-js": "^1.3.0"
}
}