This repository has been archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.56 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
101
{
"name": "decompresso",
"version": "1.2.6",
"author": "WonderWork",
"contributors": [
{
"name": "Simon Jornet",
"email": "[email protected]",
"url": "https://github.com/jornetsimon"
}
],
"homepage": "https://decompresso.fr",
"repository": "github:wonderworkhq/decompresso",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-hmr": "ng serve --hmr",
"emulators:start": "firebase emulators:start",
"emulators:export": "firebase emulators:export .firebase/seed --force",
"build": "ng build",
"build-staging": "ng build --configuration staging",
"build-prod": "ng build --prod && npm run custom-sw",
"custom-sw": "cp ngsw-worker-custom-11.1.1.js dist/decompresso/ngsw-worker.js",
"deploy-staging": "ng deploy -P default",
"deploy-prod": "npm run build-prod && firebase deploy",
"deploy-prod-only-hosting": "npm run build-prod && firebase deploy --only hosting",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"format:check": "prettier --config ./.prettierrc --check -- 'src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss,.html}' 'package.json'",
"format:write": "prettier --config ./.prettierrc --write -- 'src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss,.html}' 'package.json'",
"staging-server": "angular-http-server --path dist/decompresso",
"build:stats": "ng build --stats-json",
"analyze": "webpack-bundle-analyzer -p 9999 dist/decompresso/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.12",
"@angular/cdk": "^11.2.11",
"@angular/common": "^11.2.12",
"@angular/compiler": "^11.2.12",
"@angular/core": "^11.2.12",
"@angular/fire": "^6.1.0-rc.2",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "^11.2.12",
"@angular/platform-browser": "^11.2.12",
"@angular/platform-browser-dynamic": "^11.2.12",
"@angular/router": "^11.2.12",
"@angular/service-worker": "^11.2.12",
"@ant-design/icons-angular": "^11.0.1",
"@codewithdan/observable-store": "^2.2.11",
"@ctrl/ngx-emoji-mart": "^4.1.0",
"@ngneat/transloco": "^2.20.1",
"@ngneat/until-destroy": "^8.0.3",
"@ngx-pwa/local-storage": "^11.1.0",
"basscss": "^8.0.2",
"date-fns": "^2.16.1",
"firebase": "^8.4.0",
"md5": "^2.3.0",
"ng-rough-notation": "^1.1.2",
"ng-zorro-antd": "^11.1.0",
"ngx-device-detector": "^2.0.1",
"ngx-sharebuttons": "^8.0.5",
"ngx-vibration": "^1.1.0",
"object-hash": "^2.0.3",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"uuid": "^8.3.1",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/architect": "~0.1102.5",
"@angular-devkit/build-angular": "~0.1102.5",
"@angular/cli": "~11.2.5",
"@angular/compiler-cli": "~11.2.5",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"firebase-tools": "^9.0.1",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"nz-tslint-rules": "^0.901.2",
"open": "^7.0.3",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"typescript": "~4.0.3",
"webpack-bundle-analyzer": "^4.1.0"
}
}