forked from larscom/angular-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.83 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
{
"name": "angular-chrome-extension",
"version": "1.0.0",
"author": "Lars Kniep",
"description": "Angular google chrome extension scaffold",
"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 angular/dist",
"pack": "cd angular/dist && bestzip ../../extension-build.zip *"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"core-js": "^2.5.4",
"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"
}
}