-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 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-libraries-demo",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "eslint --ext .ts . --quiet",
"e2e": "ng e2e",
"watch-keyboard": "npm run lint && ng build angular-keyboard --watch",
"build-keyboard": "npm run lint && ng build angular-keyboard --configuration production",
"publish-keyboard": "cd dist/angular-keyboard && npm publish",
"build-and-publish-keyboard": "npm run build-keyboard && npm run publish-keyboard"
},
"private": true,
"dependencies": {
"@angular/animations": "13.3.11",
"@angular/common": "13.3.11",
"@angular/compiler": "13.3.11",
"@angular/core": "13.3.11",
"@angular/forms": "13.3.11",
"@angular/platform-browser": "13.3.11",
"@angular/platform-browser-dynamic": "13.3.11",
"@angular/router": "13.3.11",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"rxjs": "6.6.7",
"tslib": "^2.4.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.9",
"@angular/cli": "13.3.9",
"@angular/compiler-cli": "13.3.11",
"@angular/language-service": "13.3.11",
"@types/jasmine": "3.3.8",
"@types/jasminewd2": "2.0.3",
"@types/node": "^12.11.1",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "6.3.2",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.1",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.0",
"ng-packagr": "^13.3.1",
"protractor": "7.0.0",
"ts-node": "7.0.0",
"typescript": "4.6.4"
}
}