-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.38 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.38 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "full-year-calendar-lib-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod --configuration=production",
"build:lib": "ng build fullyearcalendar-lib",
"pack": "cd dist/fullyearcalendar-lib && npm pack",
"package": "npm run build:lib && npm run pack",
"copy-license": "copy .LICENSE .dist/fullyearcalendar-lib",
"copy-readme": "copy .README.md .dist/fullyearcalendar-lib",
"copy-files": "npm run copy-license && npm run copy-readme",
"test-app": "ng test full-year-calendar-lib-app",
"test-app-headless": "ng test full-year-calendar-lib-app --watch=false --browsers=ChromeHeadless",
"test-lib": "ng test fullyearcalendar-lib",
"test-lib-headless": "ng test fullyearcalendar-lib --watch=false --browsers=ChromeHeadless",
"test-all": "npm run test-app && test-lib",
"test-all-headless": "npm run test-app-headless && npm run test-lib-headless",
"lint": "ng lint",
"e2e": "ng e2e --protractor-config=e2e/protractor.conf",
"e2e-headless": "ng e2e --protractor-config=e2e/protractor.headless.conf"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.5",
"@angular/cdk": "^16.1.5",
"@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",
"postcss": "^8.5.6",
"primeflex": "^3.3.1",
"primeicons": "^3.0.0",
"primeng": "^16.1.0",
"rxjs": "^7.8.1",
"zone.js": "^0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.16",
"ng-packagr": "^16.2.3",
"@angular/cli": "~16.2.16",
"@angular/compiler-cli": "~16.2.12",
"@angular/language-service": "~16.2.12",
"@types/jasmine": "~3.6.7",
"@types/jasminewd2": "~2.0.13",
"@types/node": "~12.20.7",
"codelyzer": "~6.0.0",
"jasmine-core": "~5.0.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tsickle": ">=0.29.0",
"tslib": "^1.9.0",
"tslint": "~5.11.0",
"typescript": "~4.9.5"
}
}