-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.78 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
59
60
61
62
63
{
"name": "master-project",
"version": "0.0.1",
"description": "Master Project at Berliner Hochschule für Technik",
"author": "Steffen Ansorge <[email protected]> (https://github.com/kelzenberg)",
"contributors": [
"Frederik Busch <[email protected]> (https://github.com/fredbusch98)",
"Lennart Reinke <[email protected]> (https://github.com/leonardin96)",
"Marc Waclaw <[email protected]> (https://github.com/schmarcopolo)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kelzenberg/master-project.git"
},
"license": "MIT",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"prepare": "husky install",
"clean": "rimraf {./dist,./packages/**/dist}",
"reset": "npm run clean && rm -rf ./node_modules ./packages/backend/node_modules ./packages/frontend/node_modules ./packages/libs/node_modules && npm install",
"lint": "eslint --config ./.eslintrc.json .",
"lint:fix": "eslint --fix --config ./.eslintrc.json .",
"format": "prettier \"**/*.+(js|ts|json|html|md)\" --check --config ./.prettierrc --ignore-path ./.eslintignore --log-level=warn",
"format:fix": "prettier \"**/*.+(js|ts|json|html|md)\" --write --config ./.prettierrc --ignore-path ./.eslintignore --log-level=warn",
"up": "docker compose up -d",
"down": "docker compose down --remove-orphans",
"docker:reset": "docker compose up --force-recreate --build --remove-orphans",
"docker:verbose": "docker compose --progress=plain up --force-recreate --build --remove-orphans",
"F": "npm run --workspace @master-project/frontend",
"install:F": "npm install --workspace @master-project/frontend",
"remove:F": "npm remove --workspace @master-project/frontend",
"test:F": "jest --selectProjects @master-project/frontend",
"B": "npm run --workspace @master-project/backend",
"install:B": "npm install --workspace @master-project/backend",
"remove:B": "npm remove --workspace @master-project/backend",
"L": "npm run --workspace @master-project/libs",
"install:L": "npm install --workspace @master-project/libs",
"remove:L": "npm remove --workspace @master-project/libs",
"S": "npm run --workspace @master-project/simulation"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"babel-jest": "^29.7.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5"
},
"dependencies": {
"core-js": "^3.35.1"
}
}