-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.83 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
{
"name": "@privateaim/root",
"private": true,
"author": {
"name": "Peter Placzek",
"email": "[email protected]",
"url": "https://tada5hi.net"
},
"license": "Apache-2.0",
"version": "0.8.4",
"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.3.0",
"@swc/core": "^1.9.2",
"@swc/jest": "^0.2.37",
"@tada5hi/commitlint-config": "^1.2.2",
"@tada5hi/eslint-config-vue-typescript": "^1.3.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-serial-runner": "^1.2.0",
"lint-staged": "^15.2.10",
"nx": "^20.1.2",
"rimraf": "^6.0.1",
"rollup": "^4.27.3",
"ts-jest": "^29.2.5",
"typescript": "5.6.3",
"workspaces-publish": "^1.4.4"
},
"scripts": {
"commit": "npx git-cz",
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"lint": "eslint ./packages/**/*.{ts,vue}",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"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"
},
"lint-staged": {
"*.vue": "npm run lint:fix",
"*.js": "npm run lint:fix",
"*.ts": "npm run lint:fix"
}
}