-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.14 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
102
103
104
105
106
107
108
109
110
{
"name": "resume",
"version": "3.0.0",
"description": "Resume of Acker Dawn Apple",
"main": "index.js",
"scripts": {
"ng": "ng",
"start": "npm-run-all --parallel compile:changelog watch:templates watch:ng",
"compile:changelog": "ack-pug-bundler ./changelog.md src/changelog.template.ts --outType ts --oneFile --skipRender",
"watch": "npm run start",
"watch:ng:hmr": "ng serve --open --configuration=hmr --host 0.0.0.0",
"watch:templates": "npm run compile:templates -- --watch",
"watch:ng": "ng serve --open",
"build": "npm-run-all build:assets build:ng build:cordova",
"build:prod": "npm-run-all build:assets build:ng",
"build:assets": "npm-run-all compile:changelog build:index compile:templates",
"build:ios": "npm-run-all build:index:ios compile:templates build:ng:ios build:cordova:ios",
"build:ng": "ng build --prod --output-hashing=none",
"build:ng:cordova": "npm-run-all build:ng:ios build:ng:android",
"build:ng:ios": "ng build ios --prod --output-hashing=none",
"build:ng:android": "ng build android --prod --output-hashing=none",
"build:cordova": "npm-run-all build:ng:cordova build:cordova:platforms",
"build:cordova:platforms": "npm-run-all build:cordova:ios build:cordova:android",
"build:cordova:ios": "cd ./cordova/ios && cordova build --prod --release",
"build:cordova:android": "cd ./cordova/android && cordova build --prod --release",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build:index": "npm-run-all build:index:prod build:index:dev build:index:cordova",
"build:index:cordova": "npm-run-all build:index:ios build:index:android",
"build:index:ios": "pug src/index.ios.pug --out src/",
"build:index:android": "pug src/index.android.pug --out src/",
"build:index:prod": "pug src/index.prod.pug --out src/",
"build:index:dev": "pug src/index.pug --out src/",
"compile:templates": "ack-pug-bundler ./src/app ./src/app --outFileExt template.html --outType string --oneToOne --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ackerapple/resume.git"
},
"keywords": [
"resume",
"acker",
"dawn",
"apple"
],
"author": "Acker Dawn Apple",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ackerapple/resume/issues"
},
"homepage": "https://github.com/ackerapple/resume#readme",
"private": true,
"dependencies": {
"@agm/core": "^1.1.0",
"@angular/animations": "~9.1.9",
"@angular/common": "~9.1.9",
"@angular/compiler": "~9.1.9",
"@angular/core": "~9.1.9",
"@angular/fire": "^6.0.2",
"@angular/forms": "^9.1.9",
"@angular/platform-browser": "~9.1.9",
"@angular/platform-browser-dynamic": "~9.1.9",
"@angular/router": "~9.1.9",
"@fortawesome/fontawesome-free": "^5.14.0",
"ack-angular-fire": "git+https://[email protected]/ackerapple/ack-angular-fire.git",
"ack-angular-fx": "^4.1.0",
"ack-angular-webcam": "^1.10.0",
"ack-css-boot": "^1.2.65",
"agm-overlays": "^2.0.0",
"angular-file": "^3.1.2",
"cordova-plugin-iosrtc": "^6.0.13",
"core-js": "^3.6.5",
"debug": "^4.1.1",
"firebase": "^7.18.0",
"hammerjs": "^2.0.8",
"js-sha512": "^0.8.0",
"localforage": "^1.9.0",
"ngx-page-scroll": "^7.0.3",
"ngx-page-scroll-core": "^7.0.3",
"rxjs": "~6.6.2",
"tslib": "^2.0.1",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.1",
"@angular/cli": "~9.1.7",
"@angular/compiler-cli": "~9.1.9",
"@types/jasmine": "~3.5.12",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.0.27",
"ack-pug-bundler": "^1.4.8",
"ack-x": "^1.5.11",
"codelyzer": "~6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.2",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"npm-run-all": "^4.1.5",
"protractor": "~7.0.0",
"pug-cli": "^1.0.0-alpha6",
"ts-node": "~8.10.2",
"tslint": "~6.1.3",
"typescript": "3.8.2",
"webpack-bundle-analyzer": "^3.8.0"
}
}