-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.34 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.34 KB
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
111
112
113
114
115
{
"name": "drant-pwa",
"version": "0.0.5",
"author": "Ionic Framework",
"homepage": "https://ionicframework.com/",
"commit": {
"sha": "unknown",
"date": "unknown"
},
"scripts": {
"ng": "ng",
"server": "npx local-cors-proxy --proxyUrl https://www.devrant.io/",
"nghm": "node --max_old_space_size=8096 ./node_modules/@angular/cli/bin/ng",
"watch:app": "npm run nghm -- run app:serve --open --host=0.0.0.0 --port=8100 --poll=1000 --disable-host-check ",
"watch:sw": "npm run build:sw -- -w",
"start": "concurrently -k -p \"[{name}]\" -n \"Angular,Rollup\" -c \"yellow.bold,cyan.bold\" \"npm run watch:app\" \"npm run watch:sw\"",
"start:wsl2": "npm start -- --poll=1000",
"build": "scripts/build.sh",
"build:sw": "rollup -c rollup.sw.config.ts",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"release": "HUSKY_SKIP_HOOKS=1 standard-version --no-verify --skip.tag",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"post-commit": "npm run release"
}
},
"private": true,
"dependencies": {
"@angular/common": "~10.0.0",
"@angular/core": "~10.0.0",
"@angular/forms": "~10.0.0",
"@angular/platform-browser": "~10.0.0",
"@angular/platform-browser-dynamic": "~10.0.0",
"@angular/router": "~10.0.0",
"@angular/service-worker": "^10.0.14",
"@ionic-native/core": "^5.0.0",
"@ionic-native/splash-screen": "^5.0.0",
"@ionic-native/status-bar": "^5.0.0",
"@ionic/angular": "^5.0.0",
"@simonwep/pickr": "^1.7.4",
"@types/rollup-plugin-commonjs": "^9.3.1",
"@types/rollup-plugin-node-resolve": "^4.1.0",
"body-parser": "^1.19.0",
"dayjs": "^1.9.1",
"express": "^4.17.1",
"file-selector": "^0.1.13",
"hammerjs": "^2.0.8",
"incremental-dom": "^0.7.0",
"js-convert-case": "^4.1.0",
"markdown-it": "^11.0.1",
"markdown-it-incremental-dom": "^2.1.0",
"request": "^2.88.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.3",
"rxjs": "~6.5.5",
"ts-devrant": "0.0.4",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.0",
"@angular-eslint/builder": "0.5.0-beta.4",
"@angular-eslint/eslint-plugin": "0.5.0-beta.4",
"@angular-eslint/eslint-plugin-template": "0.5.0-beta.4",
"@angular-eslint/schematics": "^0.5.0-beta.4",
"@angular-eslint/template-parser": "0.5.0-beta.4",
"@angular/cli": "~10.0.5",
"@angular/compiler": "~10.0.0",
"@angular/compiler-cli": "~10.0.0",
"@angular/language-service": "~10.0.0",
"@ionic/angular-toolkit": "^2.3.0",
"@types/eslint": "^7.2.4",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@types/rollup": "^0.54.0",
"@types/standard-version": "^7.0.0",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.1",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.6.0",
"husky": "^4.3.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"rollup": "^2.28.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"standard-version": "^9.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.9.5"
},
"description": "An Ionic project",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}