-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.59 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
{
"name": "atypic",
"version": "1.0.0",
"description": "",
"author": "Sbyspaceopera",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"theme"
],
"homepage": "https://github.com/Sbyspaceopera/atypic",
"repository": "github:Sbyspaceopera/atypic",
"bugs": {
"url": "https://github.com/Sbyspaceopera/atypic/issues"
},
"main": "index.js",
"dependencies": {
"@wordpress/api-fetch": "^6.14.0",
"@wordpress/components": "^21.1.0",
"@wordpress/element": "^4.15.0",
"preact": "^10.11.0",
"preact-custom-element": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@prettier/plugin-php": "^0.19.1",
"@wordpress/env": "^5.5.0",
"@wordpress/scripts": "^24.1.0",
"autoprefixer": "^10.4.9",
"babel-loader": "^8.2.5",
"browser-sync": "^2.27.10",
"concurrently": "^7.4.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.13",
"eslint": "^8.25.0",
"gulp": "^4.0.2",
"gulp-imagemin": "^8.0.0",
"gulp-minify": "^3.1.0",
"gulp-phpunit": "^0.26.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"husky": "^8.0.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"sass": "^1.54.4",
"tailwindcss": "^3.1.8",
"webpack": "^5.74.0",
"webpack-stream": "^7.0.0"
},
"scripts": {
"dev": "concurrently \"npm:build\" \"npm:start:tailwind\" \"npm:dev:blocks\" ",
"build": "gulp",
"start": "docker-compose -f ./dev-env/docker-compose.yml up -d",
"dev:blocks": "wp-scripts start",
"build:blocks": "wp-scripts build",
"start:tailwind": "npx tailwindcss -i ./tailwind.css -o ./style.css --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier ./**/*.{js,mjs,scss,yml,json,md,php} --write",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"packages-update": "wp-scripts packages-update",
"phpdoc:windows": "docker run --rm -v \"%cd%:/data\" \"phpdoc/phpdoc:3\" -d ./ -t ./docs/api",
"phpdoc:unix": "docker run --rm -v \"$(pwd):/data\" \"phpdoc/phpdoc:3\" -d ./ -t ./docs/api",
"phpunit:windows": "docker run -v \"%cd%:/app\" --rm \"phpunit/phpunit\" -c ./tests/phpunit.xml",
"phpunit:unix": "docker run -v \"$(pwd):/app\" --rm \"phpunit/phpunit\" -c ./tests/phpunit.xml",
"plugin-zip": "wp-scripts plugin-zip",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"prepare": "husky install",
"wp": "docker exec wp-cli wp"
}
}