-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 2.14 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
{
"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": "^7.0.3",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"packageManager": "yarn@4.6.0"
}