mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-04 18:53:26 +08:00
fixed script names
This commit is contained in:
parent
96fea28d7b
commit
9e2bd5a3fb
2 changed files with 5 additions and 5 deletions
|
@ -8,9 +8,9 @@
|
|||
"audit": "npx webpack --config ./webpack/config.audit.js",
|
||||
"dep-graph": "madge -c -i \"dep-graph.png\" ./src/ts",
|
||||
"build": "npx gulp build",
|
||||
"build:live": "npx gulp build-production",
|
||||
"build-live": "npx gulp build-production",
|
||||
"dev": "concurrently \"webpack serve --config=./webpack/config.dev.js\" \"npx gulp watch\"",
|
||||
"deploy:live": "npm run build:live && firebase deploy -P live --only hosting",
|
||||
"deploy-live": "npm run build:live && firebase deploy -P live --only hosting",
|
||||
"tsc": "tsc"
|
||||
},
|
||||
"engines": {
|
||||
|
|
|
@ -9,13 +9,13 @@
|
|||
"install-windows": ".\\bin\\install.cmd",
|
||||
"docker": "cd backend && docker-compose up",
|
||||
"test-backend": "cd backend && npm run test",
|
||||
"dev": "concurrently --kill-others \"npm run dev:fe\" \"npm run dev:be\"",
|
||||
"dev": "concurrently --kill-others \"npm run dev-fe\" \"npm run dev-be\"",
|
||||
"dev-be": "cd backend && npm run dev",
|
||||
"dev-fe": "cd frontend && npm run dev",
|
||||
"live": "concurrently --kill-others \"cd frontend && npm run live\" \"cd backend && npm run start\"",
|
||||
"audit-fe": "cd frontend && npm run audit",
|
||||
"deploy-live": "cd frontend && npm run deploy:live",
|
||||
"build-fe": "cd ./frontend && npm run build:live",
|
||||
"deploy-live": "cd frontend && npm run deploy-live",
|
||||
"build-fe": "cd ./frontend && npm run build-live",
|
||||
"pretty": "prettier --check './backend/**/*.ts' './frontend/src/**/*.{ts,scss}' './frontend/static/**/*.{json,html}'",
|
||||
"pr-check-lint-json": "cd frontend && npx gulp pr-check-lint-json",
|
||||
"pr-check-quote-json": "cd frontend && npx gulp pr-check-quote-json",
|
||||
|
|
Loading…
Reference in a new issue