-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
103 lines (103 loc) · 3.44 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ngx-pendo-demo",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:example": "ng serve example-app",
"start:standalone": "ng serve standalone-app",
"build": "ng build",
"build:lib": "ng build ngx-pendo && npm run cp:readme",
"build:schematics": "tsc -p projects/ngx-pendo/tsconfig.schematics.json && npm run cp:schematics",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --browsers=ChromeHeadless --watch=false",
"test:schematics": "ts-node --project projects/ngx-pendo/tsconfig.schematics.json node_modules/jasmine/bin/jasmine.js projects/ngx-pendo/schematics/**/*.spec.ts",
"lint": "ng lint",
"cp": "npm run cp:readme && npm run cp:schematics",
"cp:readme": "copyfiles ./README.md ./dist/ngx-pendo",
"cp:schematics": "cd projects/ngx-pendo && copyfiles schematics/*/schema.json schematics/*/files/** schematics/collection.json ../../dist/ngx-pendo/",
"version": "cd projects/ngx-pendo && standard-version",
"publish": "cd dist/ngx-pendo && npm publish",
"prepare": "husky install"
},
"author": "Eden Wang",
"license": "MIT",
"private": true,
"engines": {
"yarn": "please-use-npm",
"node": ">=18.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular-devkit/core": "^19.0.0",
"@angular-devkit/schematics": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular/language-service": "^19.0.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@schematics/angular": "^19.0.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.11.5",
"angular-eslint": "19.0.2",
"copyfiles": "^2.3.0",
"eslint": "^9.16.0",
"husky": "^9.0.0",
"jasmine": "^5.1.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.0.0",
"ng-packagr": "^19.0.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"stylelint": "^16.0.0",
"stylelint-config-recommended": "^14.0.0",
"ts-node": "~10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "8.18.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix -c eslint.config.js"
],
"projects/ngx-pendo/**/*.{js,jsx,ts,tsx}": [
"eslint --fix -c projects/ngx-pendo/eslint.config.js"
],
"projects/example-app/**/*.{js,jsx,ts,tsx}": [
"eslint --fix -c projects/example-app/eslint.config.js"
],
"projects/standalone-app/**/*.{js,jsx,ts,tsx}": [
"eslint --fix -c projects/standalone-app/eslint.config.js"
],
"src|projects/**/*.{scss,less,css}": [
"stylelint --fix"
],
"src|projects/**/*.{ts,js,json,md,scss,less,css}": [
"prettier --write --config .prettierrc"
]
}
}