-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.66 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
{
"name": "central",
"private": true,
"author": {
"name": "Peter Placzek",
"email": "[email protected]",
"url": "https://tada5hi.net"
},
"license": "MIT",
"version": "1.0.0",
"description": "This package contains all central packages. It was initially developed as part of my Bachelor Thesis.",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.2",
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.27",
"@tada5hi/commitlint-config": "^1.1.4",
"@tada5hi/eslint-config-vue-typescript": "^1.3.7",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.8",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-serial-runner": "^1.2.0",
"nx": "^17.2.8",
"rimraf": "^5.0.5",
"rollup": "^4.9.4",
"ts-jest": "^29.1.1",
"typescript": "5.3.3",
"workspaces-publish": "^1.4.1"
},
"scripts": {
"commit": "npx git-cz",
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"lint": "eslint --ext .ts,.vue,.js ./packages/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"cli": "npm run cli --workspace=packages/server-api",
"client-ui": "npm run dev --workspace=packages/client-ui",
"server-api": "npm run dev --workspace=packages/server-api",
"server-realtime": "npm run dev --workspace=packages/server-realtime",
"server-train-manager": "npm run dev --workspace=packages/server-train-manager"
}
}