-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
100 lines (100 loc) · 3.24 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "csc",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --host=127.0.0.1 --port=8080",
"start-nhc": "ng serve --host=0.0.0.0 --port=8080 --disable-host-check",
"deploy": "node ./scripts/deploy.js",
"gen:img": "node ./src/createImageConfigs.js",
"build": "ng build --configuration production --aot && npm run pwa",
"build:dev": "ng build --aot && npm run pwa",
"deploy:dev": "firebase deploy",
"dev": "npm run build:dev && npm run deploy:dev",
"prod": "npm run build && npm run postbuild && npm run deploy",
"prod:dev": "npm run build:dev && npm run postbuild && npm run deploy:dev",
"postbuild": "bash ./scripts/postbuild.sh",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"pwa": "./node_modules/.bin/sw-precache --root=dist --config=precache-config.js",
"format:fix": "pretty-quick && ng lint --fix",
"format:check": "pretty-quick --check && ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.4",
"@angular/cdk": "^18.0.4",
"@angular/common": "^18.0.4",
"@angular/compiler": "^18.0.4",
"@angular/core": "^18.0.4",
"@angular/fire": "^18.0.1",
"@angular/forms": "^18.0.4",
"@angular/material": "^18.0.4",
"@angular/platform-browser": "^18.0.4",
"@angular/platform-browser-dynamic": "^18.0.4",
"@angular/router": "^18.0.4",
"core-js": "^2.6.12",
"firebase": "^10.12.2",
"font-awesome": "^4.7.0",
"hammerjs": "^2.0.8",
"intersection-observer": "^0.4.2",
"magic-check": "^1.0.3",
"mkdirp": "^1.0.4",
"ngx-gallery": "^5.10.0",
"ngx-gallery-9": "^1.0.6",
"ngx-markdown": "^18.0.0",
"normalize.css": "^7.0.0",
"popper.js": "^1.12.5",
"rxjs": "^7.8.1",
"sass": "^1.35.2",
"tslib": "^1.14.1",
"webpack": "^5.74.0",
"zone.js": "^0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.5",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.5",
"@angular/compiler-cli": "^18.0.4",
"@angular/language-service": "^18.0.4",
"@types/jasmine": "^2.8.18",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^18.17.12",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"base64-img": "^1.0.3",
"codelyzer": "^6.0.2",
"eslint": "^8.57.0",
"gh-pages": "^1.0.0",
"husky": "^4.3.8",
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"jimp": "^0.16.1",
"karma": "^6.3.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^0.2.2",
"prettier": "^2.3.2",
"pretty-quick": "^2.0.2",
"protractor": "^7.0.0",
"svg2png": "^4.1.1",
"sw-precache": "^5.2.0",
"ts-node": "^3.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "ng lint --fix && pretty-quick --staged"
}
}
}