-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
{
"name": "poddy",
"version": "0.0.1",
"author": "andreyjkee",
"description": "Poddy is a google chrome extension developed with Angular",
"keywords": [
"rss",
"podcast",
"player"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"build:angular": "ng build",
"build:angular-production": "ng build --prod",
"watch:angular": "ng build --watch --delete-output-path false",
"build:chrome": "webpack --config chrome/webpack.config.js",
"build:chrome-production": "webpack -p --config chrome/webpack.config.prod.js",
"watch:chrome": "webpack --config chrome/webpack.config.js -w",
"build": "npm run clean && npm run build:angular && npm run build:chrome",
"build:production": "npm run build:angular-production && npm run build:chrome-production && npm run pack",
"watch": "npm run clean && npm-run-all --parallel watch:*",
"clean": "rimraf dist",
"pack": "cd dist && bestzip ../../extension-build.zip *"
},
"private": false,
"dependencies": {
"@angular/animations": "^7.2.12",
"@angular/cdk": "^7.3.7",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/material": "^7.3.7",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"core-js": "^2.5.4",
"flexboxgrid": "^6.3.1",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.3",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@types/chrome": "0.0.81",
"@types/node": "~8.9.4",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "^2.1.2",
"codelyzer": "~4.5.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}