-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
45 lines (45 loc) · 1.62 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
{
"name": "angular-chrome-extension",
"version": "1.0.0",
"author": "Lars Kniep",
"description": "Angular Chrome Extension Template",
"scripts": {
"ng": "ng",
"start": "npm run watch",
"build:angular": "ng build --configuration development",
"build:angular-production": "ng build --configuration production",
"watch:angular": "ng build --watch --configuration development --delete-output-path false --source-map=true --plugin ~angular/sourcemaps-plugin.js",
"build:chrome": "(cd chrome && rollup -c)",
"watch:chrome": "(cd chrome && rollup -c --watch)",
"build": "npm run clean && npm run build:angular && npm run build:chrome",
"build:production": "npm run build:angular-production && npm run build:chrome && 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": "18.2.8",
"@angular/common": "18.2.8",
"@angular/compiler": "18.2.8",
"@angular/core": "18.2.8",
"@angular/forms": "18.2.8",
"@angular/platform-browser": "18.2.8",
"@angular/platform-browser-dynamic": "18.2.8",
"@angular/router": "18.2.8",
"ngx-build-plus": "18.0.0",
"rxjs": "7.8.1",
"tslib": "2.8.0",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.9",
"@angular/cli": "18.2.9",
"@angular/compiler-cli": "18.2.8",
"@types/chrome": "0.0.278",
"bestzip": "2.2.1",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"typescript": "5.6.3"
}
}