forked from worktile/slate-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.96 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
{
"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 --configuration production",
"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"
},
"lint-staged": {
"packages/**/*.{ts}": [
"prettier --write",
"git add"
]
},
"husky": {
"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": "~14.1.2",
"@angular/common": "~14.1.2",
"@angular/compiler": "^14.1.2",
"@angular/core": "~14.1.2",
"@angular/forms": "~14.1.2",
"@angular/platform-browser": "~14.1.2",
"@angular/platform-browser-dynamic": "~14.1.2",
"@angular/router": "^14.1.2",
"direction": "^1.0.3",
"is-hotkey": "^0.1.6",
"rxjs": "~6.6.0",
"slate": "0.72.8",
"slate-history": "0.66.0",
"tslib": "^2.4.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.1.2",
"@angular-devkit/core": "^14.1.2",
"@angular-eslint/builder": "14.0.2",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/schematics": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/cli": "^14.1.2",
"@angular/compiler-cli": "^14.1.2",
"@angular/language-service": "^14.1.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/codemirror": "0.0.81",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"coveralls": "^3.0.6",
"cpx": "^1.5.0",
"eslint": "^7.26.0",
"faker": "^4.1.0",
"husky": "^4.3.0",
"jasmine": "~4.0.0",
"jasmine-core": "~4.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lint-staged": "^10.0.8",
"ng-packagr": "^14.1.0",
"prettier": "^1.19.1",
"standard-version": "^7.0.1",
"ts-node": "~8.3.0",
"typescript": "~4.6.4",
"is-url": "^1.2.2",
"@changesets/changelog-github": "^0.3.0",
"@changesets/cli": "^2.19.0"
}
}