-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 2.36 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
{
"name": "medusawp",
"private": true,
"type": "module",
"workspaces": [
"dev/medusa",
"dev/wp",
"medusa-plugin",
"wordpress-plugin"
],
"scripts": {
"start:medusa": "nodemon --watch \"medusa-plugin\" --ignore \"medusa-plugin/src\" --ignore \"medusa-plugin/thunder\" --spawn --exec \"npm start -w medusa\" --delay 2 --verbose",
"start": "concurrently -n \"build:medusa-plugin,generate:medusa-php-api\" \"npm run build -w medusa-plugin-wordpress && npm run build -w medusa\" \"npm run generate:medusa-api\" && concurrently -n \"start:medusa,watch:medusa-plugin,dev-server:wordpress-plugin\" \"npm run start:medusa\" \"npm run watch -w medusa-plugin-wordpress\" \"npm run dev -w wordpress-plugin\" --timings --prefix \"[{name}] [{time}] =>\"",
"plugin:phpcs": "wordpress-plugin/vendor/bin/phpcs --standard=wordpress-plugin/phpcs.xml",
"plugin:phpcbf": "wordpress-plugin/vendor/bin/phpcbf --standard=wordpress-plugin/phpcs.xml",
"theme:phpcs": "dev/wp/web/vendor/bin/phpcs --standard=dev/wp/phpcs.xml",
"theme:phpcbf": "dev/wp/web/vendor/bin/phpcbf --standard=dev/wp/phpcs.xml",
"up:docker": "docker-compose --profile wp --profile medusa up",
"down:docker": "docker-compose --profile wp --profile medusa down",
"generate:medusa-api:admin": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./dev/scripts/generate-medusa-client.ts admin",
"generate:medusa-api:store": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./dev/scripts/generate-medusa-client.ts store",
"generate:medusa-api": "npm run generate:medusa-api:admin && npm run generate:medusa-api:store",
"generate:medusa-seed": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./dev/scripts/generate-medusa-seed.ts",
"generate:medusa-import-csv": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./dev/scripts/generate-medusa-import-csv.ts",
"publish:wp-plugin": "agilorun publish:wpplugin --verbose"
},
"dependencies": {
"@agilorunner/gitdeploy": "^3.0.0",
"@agilorunner/run": "^3.0.0",
"@medusajs/medusa-oas-cli": "file:.yalc/@medusajs/medusa-oas-cli",
"concurrently": "^8.2.2",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"nodemon": "^3.0.1",
"openapi-filter": "^3.2.3",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/fs-extra": "^11.0.4"
}
}