-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.49 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
{
"name": "ng-assets-wk",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --project ng-app --port 4400",
"start:static": "http-server dist/ng-app -p 4400",
"build:lib:schematics": "tsc -p projects/abo/ng-lib/tsconfig.schematics.json",
"build:lib": "npm run build:lib:schematics && ng build --configuration production --project @abo/ng-lib",
"watch:lib": "ng build --watch --configuration development --project @abo/ng-lib",
"link:lib": "cd dist/abo/ng-lib && npm link",
"link:app": "cd projects/ng-app && npm link @abo/ng-lib",
"link:all": "npm run link:lib && npm run link:app",
"link:rm": "npm rm -g @abo/ng-lib",
"app:ng-add": "cd projects/ng-app && ng g @abo/ng-lib:ng-add",
"watch:lib:prod": "ng build --watch --configuration production --project @abo/ng-lib",
"unpublish:lib": "npm unpublish @abo/ng-lib --registry http://localhost:4873/ --force",
"publish:lib": "ng build @abo/ng-lib && cd dist/abo/ng-lib && npm publish --registry http://localhost:4873/",
"install:lib": "npm install @abo/ng-lib --registry http://localhost:4873/",
"uninstall:lib": "npm uninstall @abo/ng-lib",
"lib:all": "npm run unpublish:lib && npm run publish:lib && npm run uninstall:lib && npm run install:lib",
"build:app": "ng build --configuration production --project ng-app",
"watch:app": "ng build --watch --configuration development --project ng-app",
"watch:app:prod": "ng build --watch --configuration production --project ng-app",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular-devkit/schematics": "^16.2.12",
"@angular/animations": "^16.2.12",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"bootstrap": "^5.3.2",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.12",
"@angular/cli": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"http-server": "^14.1.1",
"jasmine-core": "~4.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^16.2.3",
"typescript": "^4.9.5"
}
}