-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.19 KB
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
{
"name": "@kryops/remote-mixer",
"version": "0.0.1",
"main": "backend/dist/index.js",
"repository": "https://github.com/kryops/remote-mixer",
"author": "Michael Manzinger <michael@kryops.de>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"backend",
"frontend",
"shared/*"
]
},
"scripts": {
"all": "yarn lint && yarn test && yarn build",
"clean": "yarn workspaces foreach -A run clean && rimraf node_modules/.cache .linaria-cache .eslintcache tsconfig.tsbuildinfo",
"backend": "yarn workspace @remote-mixer/backend",
"build": "yarn run clean && run-p 'backend build' 'frontend build'",
"frontend": "yarn workspace @remote-mixer/frontend",
"lint": "run-p --continue-on-error lint:eslint lint:ts lint:prettier 'frontend lint:css'",
"lint:eslint": "eslint --cache 'frontend/**/*.@(ts|tsx)' 'backend/**/*.ts' 'shared/**/*.ts'",
"lint:ts": "tsc -b frontend backend",
"lint:ts:watch": "tsc -b frontend backend --watch",
"lint:prettier": "prettier --check --cache '{backend,frontend,shared}/**/*.{ts,tsx}'",
"prepare": "rimraf node_modules/.cache .linaria-cache && yarn build",
"prettier": "prettier --cache --write '{backend,frontend,shared}/**/*.{ts,tsx}'",
"prod": "run-s build start",
"dev": "run-p 'backend dev' 'frontend dev' 'backend build --watch --preserveWatchOutput' 'frontend tsc:watch'",
"start": "cross-env NODE_ENV=production && node .",
"test": "jest"
},
"dependencies": {
"cross-env": "^10.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^30.0.5",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"type-fest": "^4.41.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0"
},
"packageManager": "yarn@4.9.2"
}