-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.33 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
104
{
"name": "cmdk",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --base-href=/cmdk/",
"watch": "ng build --watch --configuration development",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "cz",
"deploy": "npx angular-cli-ghpages --dir=dist/cmdk",
"copy": "cpx README.md dist/ngxpert/cmdk",
"build:lib": "ng build @ngxpert/cmdk && npm run copy",
"test:lib": "ng test @ngxpert/cmdk",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"postbuild:lib": "npm run build --prefix projects/ngxpert/cmdk",
"semantic-release": "semantic-release",
"lint": "ng lint",
"unit": "npm run cy:open",
"cy:open": "cypress open --component",
"test": "npm run ci:cy-run",
"ci:cy-run": "start-server-and-test ci:start-server http://localhost:4200 cy:run",
"ci:start-server": "serve -l 4200 -s ./dist/cmdk/browser",
"cy:run": "cypress run --component"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.4",
"@angular/cdk": "^18.0.4",
"@angular/common": "^18.0.4",
"@angular/compiler": "^18.0.4",
"@angular/core": "^18.0.4",
"@angular/forms": "^18.0.4",
"@angular/platform-browser": "^18.0.4",
"@angular/platform-browser-dynamic": "^18.0.4",
"@angular/router": "^18.0.4",
"@ngneat/overview": "6.0.0",
"@ngneat/until-destroy": "10.0.0",
"prismjs": "^1.29.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.5",
"@angular-devkit/core": "^18.0.5",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "~18.0.5",
"@angular/compiler-cli": "^18.0.4",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@ngneat/spectator": "^15.0.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "~4.0.0",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"all-contributors-cli": "^6.20.0",
"angular-cli-ghpages": "^2.0.1",
"commitizen": "^4.2.5",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"cypress": "^13.12.0",
"eslint": "^8.57.0",
"husky": "^8.0.1",
"jasmine-core": "~4.2.0",
"jsonc-parser": "^3.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"lint-staged": "^13.0.3",
"ng-packagr": "^18.0.0",
"prettier": "^2.7.1",
"sass": "^1.58.3",
"semantic-release": "^19.0.3",
"serve": "^14.2.3",
"start-server-and-test": "^2.0.4",
"typescript": "~5.4.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged"
}
}
}