-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.22 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": "cogs-angular-website",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production --aot --delete-output-path --build-optimizer",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"generate": "rimraf src/generated && rimraf src/shared && mkdirp src/generated src/shared && copyfiles -e \"../backend/src/generated/typetta.ts\" -f \"../backend/src/generated/**/*\" \"src/generated\" && copyfiles -u 4 \"../backend/src/shared/**/*\" \"src/shared\"",
"selfhosted:build": "ng build --configuration production --aot --delete-output-path --build-optimizer --base-href /rucogs/frontend/",
"selfhosted:copybuild": "rm -rf /var/www/rucogs/* && cp -a ./dist/. /var/www/rucogs/",
"selfhosted:launch": "npm run selfhosted:build && npm run selfhosted:copybuild",
"pretty": "prettier --write \"src//**/*.ts\""
},
"private": true,
"dependencies": {
"@angular/animations": "^14.0.2",
"@angular/cdk": "^14.0.2",
"@angular/common": "^14.0.2",
"@angular/compiler": "^14.0.2",
"@angular/core": "^14.0.2",
"@angular/forms": "^14.0.2",
"@angular/material": "^14.0.2",
"@angular/material-moment-adapter": "^14.0.2",
"@angular/platform-browser": "^14.0.2",
"@angular/platform-browser-dynamic": "^14.0.2",
"@angular/router": "^14.0.2",
"@apollo/client": "^3.0.0",
"@fontsource/urbanist": "^4.5.1",
"@iconify/types": "^1.1.0",
"@juggle/resize-observer": "^3.3.1",
"@visurel/iconify-angular": "^11.0.0",
"apollo-angular": "^3.0.1",
"apollo-upload-client": "^17.0.0",
"colorthief": "^2.2.0",
"convert-css-length": "^2.0.1",
"deep-equal": "^2.0.5",
"graphql": "^16",
"graphql-ws": "^5.9.0",
"gumshoejs": "^5.1.2",
"iconify": "^1.4.0",
"ngx-cookie-service": "^14.0.0",
"ngx-markdown": "^14.0.0",
"prismjs": "^1.28.0",
"rxjs": "~7.5.5",
"ts-mixer": "^6.0.1",
"tslib": "^2.3.0",
"type-fest": "^2.13.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.2",
"@angular/cli": "^14.0.2",
"@angular/compiler-cli": "^14.0.2",
"@iconify/icons-ant-design": "^1.2.2",
"@iconify/icons-bi": "^1.2.4",
"@iconify/icons-bx": "^1.2.3",
"@iconify/icons-dashicons": "^1.2.2",
"@iconify/icons-fluent": "^1.2.10",
"@iconify/icons-ic": "^1.2.5",
"@iconify/icons-simple-icons": "^1.2.14",
"@types/apollo-upload-client": "^17.0.0",
"@types/color-thief-node": "^1.0.1",
"@types/deep-equal": "^1.0.1",
"@types/jasmine": "~3.8.0",
"@types/node": "^12.11.1",
"@types/passport-discord": "^0.1.5",
"copyfiles": "^2.4.1",
"install": "^0.13.0",
"jasmine-core": "~3.8.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"npm": "^10.8.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.3"
},
"overrides": {
"apollo-angular": {
"@angular/core": "$@angular/core"
}
}
}