-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.46 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
{
"name": "ngx-icon",
"version": "1.2.0",
"scripts": {
"start": "ng serve",
"build": "ng build ngx-icon-app",
"build:library": "ng build @anedomansky/ngx-icon --configuration=production",
"build:library:watch": "ng build @anedomansky/ngx-icon --configuration development --watch",
"test": "npm run test:lib && npm run test:app",
"test:lib": "jest --silent --config ./jest.lib.config.ts",
"test:lib:local": "jest --config ./jest.lib.config.ts",
"test:app": "jest --silent --config ./jest.app.config.ts",
"test:app:local": "jest --config ./jest.app.config.ts",
"test:coverage": "jest --silent --collectCoverage --config ./jest.lib.config.ts",
"lint": "eslint . --ext .ts --ext .html",
"lint:fix": "eslint . --ext .ts --ext .html --fix",
"build:complete": "npm run lint:fix && npm run test:lib && npm run build:library && npm run test:app && npm run build"
},
"private": true,
"dependencies": {
"@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",
"rxjs": "~7.8.1",
"tslib": "~2.6.2",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular/cli": "~16.2.10",
"@angular/compiler-cli": "~16.2.12",
"typescript": "~5.1.6",
"@angular-devkit/build-angular": "~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/template-parser": "~16.3.1",
"@types/node": "~20.10.5",
"@typescript-eslint/eslint-plugin": "~6.15.0",
"@typescript-eslint/parser": "~6.15.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-rxjs": "~5.0.3",
"eslint-plugin-rxjs-angular": "~2.0.1",
"eslint-plugin-simple-import-sort": "~10.0.0",
"prettier": "~3.1.1",
"ng-packagr": "~16.2.3",
"@types/jest": "~29.5.11",
"jest": "~29.7.0",
"jest-preset-angular": "~13.1.4",
"ts-node": "~10.9.2",
"stylelint": "~14.16.1",
"stylelint-config-prettier": "~9.0.5",
"stylelint-config-sass-guidelines": "~9.0.1",
"stylelint-config-standard": "~29.0.0",
"stylelint-order": "~6.0.3",
"stylelint-scss": "~5.2.1"
}
}