-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.08 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
{
"name": "kompakkt",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"local": "ng serve --host=0.0.0.0",
"build": "ng build",
"lint": "ng lint",
"prettier": "prettier --config .prettierrc.json 'src/**/*.{ts,html,scss}' --write",
"postprepare": "git submodule update --remote --merge",
"extract-translations": "ts-node --skipProject ./extract-translations.ts"
},
"contributors": [
{
"name": "Zoe Schubert"
},
{
"name": "Kai Niebes"
},
{
"name": "Jan Wieners",
"email": "[email protected]",
"url": "https://jan-wieners.de"
}
],
"private": true,
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@angular/animations": "^18.2.5",
"@angular/cdk": "^18.2.5",
"@angular/common": "^18.2.5",
"@angular/compiler": "^18.2.5",
"@angular/core": "^18.2.5",
"@angular/forms": "^18.2.5",
"@angular/material": "^18.2.5",
"@angular/platform-browser": "^18.2.5",
"@angular/platform-browser-dynamic": "^18.2.5",
"@angular/router": "^18.2.5",
"@babylonjs/core": "5.5.5",
"@babylonjs/gui": "5.5.5",
"@babylonjs/gui-editor": "5.5.5",
"@babylonjs/inspector": "5.5.5",
"@babylonjs/loaders": "5.5.5",
"@babylonjs/materials": "5.5.5",
"@babylonjs/serializers": "5.5.5",
"bson-objectid": "^2.0.4",
"core-js": "^3.38.0",
"file-saver": "^2.0.5",
"fscreen": "^1.2.0",
"marked": "^13.0.3",
"ngx-color": "^9.0.0",
"pepjs": "^0.5.3",
"rxjs": "^7.8.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular/build": "^18.2.5",
"@angular/cli": "18.2.5",
"@angular/compiler-cli": "^18.2.5",
"@angular/language-service": "^18.2.5",
"@types/file-saver": "^2.0.7",
"@types/fscreen": "^1.0.4",
"@types/marked": "^6.0.0",
"@types/node": "^22.1.0",
"codelyzer": "^6.0.2",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"ts-node": "~10.9.2",
"tslint": "~6.1.3",
"typescript": "^5.5.4"
}
}