Reactive-Resume/package.json

38 lines
1.2 KiB
JSON

{
"name": "reactive-resume",
"version": "3.0.0",
"private": true,
"packageManager": "yarn@3.2.0",
"workspaces": [
"schema",
"client",
"server"
],
"scripts": {
"dev:client": "yarn workspace @reactive-resume/client run dev",
"dev:server": "yarn workspace @reactive-resume/server run start:dev",
"dev": "env-cmd concurrently --kill-others \"yarn:dev:*\"",
"build": "yarn workspaces foreach run build",
"lint": "yarn workspaces foreach run lint",
"start:client": "yarn workspace @reactive-resume/client run start",
"start:server": "yarn workspace @reactive-resume/server run start:prod",
"start": "concurrently --kill-others \"yarn:start:*\""
},
"dependencies": {
"concurrently": "^7.0.0",
"env-cmd": "^10.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.5.1",
"typescript": "<4.6.0"
}
}