-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
101 lines (101 loc) · 3.17 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
{
"name": "slate-angular",
"workspaces": [
"packages"
],
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"build": "ng build slate-angular --configuration production && cpx \"./packages/src/**/*.scss\" ./dist/",
"build:demo": "ng build demo",
"pub": "npm run build && cd dist && npm publish --access public",
"pub-next": "npm run build && cd dist && npm publish --tag next --access public",
"patch": "cd packages && npm version patch",
"minor": "cd packages && npm version minor",
"major": "cd packages && npm version major",
"release": "standard-version",
"test": "ng test slate-angular",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"lint": "ng lint",
"e2e": "ng e2e",
"format": "prettier --check --write \"**/*\""
},
"husky": {
"hooks": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/worktile/slate-angular"
},
"dependencies": {
"@angular/animations": "~18.1.4",
"@angular/common": "~18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "~18.1.4",
"@angular/forms": "~18.1.4",
"@angular/platform-browser": "~18.1.4",
"@angular/platform-browser-dynamic": "~18.1.4",
"@angular/router": "^18.1.4",
"core-js": "3.35.0",
"direction": "^2.0.1",
"is-hotkey": "^0.2.0",
"rxjs": "~7.8.1",
"scroll-into-view-if-needed": "^3.1.0",
"slate": "^0.103.0",
"slate-history": "^0.100.0",
"tslib": "^2.6.2",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular-devkit/core": "^18.1.4",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@angular/language-service": "^18.1.4",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@faker-js/faker": "^8.3.1",
"@types/codemirror": "5.60.15",
"@types/is-hotkey": "^0.1.10",
"@types/is-url": "^1.2.32",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"coveralls": "^3.1.1",
"cpx": "^1.5.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"is-url": "^1.2.4",
"jasmine": "~5.1.0",
"jasmine-core": "~5.1.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.2.0",
"ng-packagr": "^18.1.0",
"prettier": "^3.1.1",
"pretty-quick": "3.1.3",
"standard-version": "^9.5.0",
"ts-node": "~10.9.2",
"typescript": "~5.5.4"
}
}