-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
85 lines (85 loc) · 3.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "right-angled",
"version": "16.0.1",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"ng": "ng",
"serve": "ng serve right-angled-demo",
"build-lib": "ng build right-angled",
"build-demo": "ng build right-angled-demo",
"bundle-report": "ng build right-angled && ng build right-angled-demo --stats-json && webpack-bundle-analyzer docs/stats.json",
"conventional-changelog": "conventional-changelog",
"prettier": "prettier --write \"./projects/**/!(*.d.ts|*.png|*.svg|*.ico|*.html|.gitkeep|*.tsfake)\"",
"docs": "ng build right-angled && ng build right-angled-demo --configuration production --base-href=/right-angled/ && copy .\\docs\\index.html .\\docs\\404.html",
"changelog": "npm run conventional-changelog -- -p angular -i CHANGELOG.md -s",
"copy-assets": "copy .\\LICENSE .\\dist\\right-angled && copy .\\README.md .\\dist\\right-angled && copy .\\CHANGELOG.md .\\dist\\right-angled",
"pack": "ng build right-angled --prod && npm run copy-assets && cd dist/right-angled && npm pack",
"coveralls": "cat ./coverage/right-angled/lcov.info | ./node_modules/.bin/coveralls",
"test": "ng test right-angled --watch=false --browsers=ChromeHeadless",
"ci": "ng lint && ng build right-angled --configuration production && ng build right-angled-demo --configuration production && npm run test",
"lint": "ng lint"
},
"dependencies": {
"@angular/animations": "16.2.12",
"@angular/cdk": "16.2.9",
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/localize": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"alertify": "0.3.0",
"bootstrap": "^3.3.7",
"clipboard": "^2.0.0",
"core-js": "^2.5.6",
"normalize.css": "8.0.1",
"prismjs": "^1.21.0",
"rxjs": "~7.8.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.10",
"@angular-devkit/core": "16.2.10",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "16.2.10",
"@angular/compiler-cli": "16.2.12",
"@angular/language-service": "16.2.12",
"@types/alertify": "0.3.33",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/node": "20.12.12",
"@types/resize-observer-browser": "^0.1.5",
"@types/sinon": "7.0.6",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"conventional-changelog-cli": "5.0.0",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.57.0",
"jasmine-core": "5.1.2",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "16.2.3",
"prettier": "^3.2.5",
"protractor": "7.0.0",
"sinon": "7.5.0",
"ts-node": "10.9.2",
"tslib": "^2.6.2",
"typescript": "~5.1.3",
"webpack-bundle-analyzer": "3.5.2"
}
}