-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.3 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.3 KB
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
{
"name": "modul-r",
"version": "2.0.0",
"repository": "https://github.com/erikyo/modul-r",
"license": "GPL-3.0",
"author": "erik",
"homepage": "https://modul-r.codekraft.it/",
"files": [
"build/*",
"img/*",
"inc/*",
"parts/*",
"patterns/*",
"styles/*",
"templates/*",
"vendor/*",
"style.css",
"theme.json",
"screenshot.png",
"functions.php",
"LICENSE",
"readme.txt"
],
"scripts": {
"start": "wp-scripts start",
"build:scripts": "wp-scripts build",
"build:zip": "wp-scripts plugin-zip --outDir=releases --with-version",
"build:images": "squashify",
"makepot": "npx make-pot --silent",
"build": "npm run build:scripts && npm run build:images && npm run build:zip",
"lint:css": "wp-scripts lint-style -- --fix ./src/styles",
"lint:js": "wp-scripts lint-js ./src/scripts",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:destroy": "wp-env destroy",
"packages-update": "wp-scripts packages-update",
"generate-font-list": "node ./bin/gfontsList.mjs -sort=popularity",
"composer-install": "docker run -it --rm -v `pwd`:/app composer install",
"composer-install-windows": "docker run -it --rm -v \"%cd%\":/app composer install",
"test": "wp-env start && wp-env run tests-cli wp theme activate modul-r && jest --silent=false --coverage",
"post-install": "composer install && npm run build:images && npm run build:scripts",
"release": "composer PHPCS-FIXER-dev && composer install --no-dev && npm run build:makepot && npm run build && composer install"
},
"devDependencies": {
"@wordpress/env": "^11.5.0",
"@wordpress/i18n": "^6.18.0",
"@wordpress/icons": "^13.0.0",
"@wordpress/prettier-config": "^4.45.0",
"@wordpress/scripts": "^32.1.0",
"squashify": "^0.1.1",
"typescript": "^6.0.3"
},
"dependencies": {
"animate-css-grid": "^1.5.1",
"animate.css": "^4.1.1",
"choices.js": "^11.2.3",
"glightbox": "^3.3.1",
"minimasonry": "^1.3.2",
"pageable": "^0.6.8",
"swiper": "12.1.4",
"vivus": "^0.4.6"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"globals": {
"document": true,
"window": true
}
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"prettier": "@wordpress/prettier-config",
"stylelint": {
"extends": [
"@wordpress/stylelint-config"
]
}
}