-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.37 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
94
95
96
97
98
99
{
"name": "@moderntribe/wme-sitebuilder",
"version": "2.0.1",
"description": "Easily build and configure a site.",
"author": "Modern Tribe Incubator Team",
"license": "MIT",
"private": true,
"homepage": "https://github.com/moderntribe/wme/tree/trunk/plugins/sitebuider/README.md",
"repository": {
"type": "git",
"url": "https://github.com/moderntribe/wme.git",
"directory": "plugins/wme-sitebuilder"
},
"bugs": {
"url": "https://github.com/moderntribe/wme/issues/"
},
"scripts": {
"build": "pnpm run production",
"build:plugin": "composer build:plugin",
"dev": "pnpm run development",
"development": "mix",
"env:destroy": "pnpm wp-env destroy",
"env:dev": "pnpm wp-env start",
"env:down": "pnpm wp-env stop",
"env:reset": "pnpm wp-env clean all",
"env:update": "pnpm wp-env start --update",
"hot": "mix watch --hot",
"lint": "pnpm run lint:css && npm run lint:js",
"lint:fix": "pnpm run lint:css:fix && pnpm run lint:js:fix",
"lint:css": "npx stylelint 'assets/{scss,css}/**/*.{scss,css}'",
"lint:css:fix": "npx stylelint --fix 'assets/{scss,css}/**/*.{scss,css}'",
"lint:js": "npx eslint assets/js --ext .js,.jsx -c .eslintrc.json",
"lint:js:fix": "npx eslint assets/js --ext .js,.jsx -c .eslintrc.json --fix",
"preinstall": "npx only-allow pnpm",
"postinstall": "composer install",
"prod": "pnpm run production",
"production": "mix --production",
"test": "USE_WP_ENV=1 pnpm playwright test --config=tests/e2e/playwright.config.ts",
"test:report": "allure serve tests/results/allure-results",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@moderntribe/sitebuilder": "workspace:*",
"@moderntribe/storebuilder": "workspace:*",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "5.0.0-alpha.112",
"@mui/material": "^5.11.3",
"@mui/utils": "^5.11.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.6.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-react": "^7.18.6",
"@moderntribe/e2e-test-utils": "workspace:*",
"@moderntribe/tsconfig": "workspace:*",
"@playwright/test": "^1.29.1",
"@types/node": "^18.11.18",
"@wordpress/element": "^4.20.0",
"@wordpress/env": "^5.9.0",
"@wordpress/eslint-plugin": "^12.9.0",
"@wordpress/html-entities": "^3.24.0",
"@wordpress/i18n": "^4.24.0",
"@wordpress/stylelint-config": "^19.1.0",
"allure-commandline": "^2.20.1",
"allure-playwright": "2.0.0-beta.21",
"browser-sync": "^2.27.11",
"browser-sync-webpack-plugin": "^2.3.0",
"eslint": "^8.31.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-vue": "^9.8.0",
"eslint-webpack-plugin": "^3.2.0",
"laravel-mix": "^6.0.49",
"laravel-mix-eslint": "^0.2.0",
"markdownlint": "^0.25.1",
"markdownlint-cli2": "^0.4.0",
"mix-env-file": "^0.1.1",
"postcss": "^8.4.20",
"postcss-selector-parser": "^6.0.11",
"prettier": "^2.8.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-recess-order": "^2.6.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.9.4",
"underscore": "^1.13.6",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
}
}