-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.64 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "kompakkt.repo",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:prod": "ng serve --configuration=production",
"build": "ng build",
"lint": "eslint -c .eslintrc.js ./src/**/*.ts",
"prettier": "prettier --config .prettierrc.json src/**/*.{ts,html,scss} --write",
"cy:open": "cypress open",
"cy:run": "cypress run",
"e2e": "concurrently \"ng serve --port 1503\" \"wait-on http-get://localhost:1503 && npm run cy:run\" --kill-others --success first",
"e2e-gui": "concurrently \"ng serve --port 1503\" \"wait-on http-get://localhost:1503 && npm run cy:open\" --kill-others --success first",
"postprepare": "git submodule update --remote --merge",
"prepare": "husky install",
"extract-translations": "ts-node --skipProject ./extract-translations.ts"
},
"contributors": [
{
"name": "Jan G. Wieners",
"email": "[email protected]",
"url": "https://jan-wieners.de"
},
{
"name": "Kai Niebes",
"email": "[email protected]",
"url": "https://github.com/HeyItsBATMAN"
},
{
"name": "Zoe Schubert"
}
],
"private": true,
"dependencies": {
"@angular/animations": "^18.1.3",
"@angular/cdk": "^18.1.3",
"@angular/common": "^18.1.3",
"@angular/compiler": "^18.1.3",
"@angular/core": "^18.1.3",
"@angular/forms": "^18.1.3",
"@angular/material": "^18.1.3",
"@angular/platform-browser": "^18.1.3",
"@angular/platform-browser-dynamic": "^18.1.3",
"@angular/router": "^18.1.3",
"bson-objectid": "^2.0.4",
"fscreen": "1.2.0",
"particles.js": "2.0.0",
"rxjs": "~7.8.1",
"spark-md5": "^3.0.2",
"tslib": "^2.6.3",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.3",
"@angular/cli": "^18.1.3",
"@angular/compiler-cli": "^18.1.3",
"@angular/language-service": "^18.1.3",
"@types/fscreen": "1.0.4",
"@types/node": "^22.1.0",
"@types/spark-md5": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"concurrently": "^8.2.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"ts-node": "~10.9.2",
"typescript": "~5.5.4",
"wait-on": "^7.2.0"
},
"optionalDependencies": {
"cypress": "13.13.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 9-11"
]
}