-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.3 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
{
"name": "musil",
"version": "1.0.0",
"private": true,
"license": "MIT",
"browserslist": [
"> 0.2%, defaults, last 2 versions, not dead, not android 4.4.3-4.4.4, not kaios 2.5, not op_mini all"
],
"scripts": {
"ng": "ng",
"start": "ng serve --port 4200 --open",
"dev": "npm run start -- --host 0.0.0.0",
"build": "ng build",
"postbuild": "mkdir -p functions/lib && cp dist/musil/index.html functions/lib",
"stats": "ng build --configuration production --stats-json",
"analyze": "webpack-bundle-analyzer dist/musil/stats.json",
"test": "ng test",
"lint": "ng lint",
"lint-fix": "eslint --cache --fix src/ && prettier --write src/"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.0",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/animations": "^16.1.1",
"@angular/cdk": "^16.1.1",
"@angular/cli": "~16.1.0",
"@angular/common": "^16.1.1",
"@angular/compiler": "^16.1.1",
"@angular/compiler-cli": "^16.1.1",
"@angular/core": "^16.1.1",
"@angular/fire": "^16.0.0",
"@angular/forms": "^16.1.1",
"@angular/language-service": "^16.1.1",
"@angular/material": "^16.1.1",
"@angular/platform-browser": "^16.1.1",
"@angular/platform-browser-dynamic": "^16.1.1",
"@angular/router": "^16.1.1",
"@types/jasmine": "~4.3.0",
"@types/quill": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"algoliasearch": "^4.14.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.6.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"material-icons": "^1.13.8",
"ngx-image-cropper": "^6.3.2",
"ngx-infinite-scroll": "^16.0.0",
"ngx-quill": "^22.0.0",
"prettier": "^2.8.3",
"quill": "^1.3.7",
"quill-image-drop-and-paste": "^1.3.0",
"quill-image-resize": "^3.0.9",
"rxjs": "~7.8.0",
"typescript": "~4.9.4",
"webpack-bundle-analyzer": "^4.7.0",
"zone.js": "~0.13.1"
}
}