forked from mostafazke/ng-whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.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
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
105
106
107
108
109
{
"name": "ng-whiteboard",
"version": "0.0.0-semantically-released",
"license": "MIT",
"scripts": {
"ng": "nx",
"start": "nx serve demo",
"copy:readme": "copyfiles ./README.md ./projects/ng-whiteboard",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "nx build ng-whiteboard --prod",
"build:demo": "nx build demo --prod --base-href='https://mostafazke.github.io/ng-whiteboard/'",
"format:check": "nx format:check",
"format:write": "nx format:write",
"test:lib": "nx test ng-whiteboard --codeCoverage --watch=false",
"report-coverage:lib": "cat ./coverage/ng-whiteboard/lcov.info | codecov",
"publish:demo": "npx angular-cli-ghpages --dir=./dist/demo",
"publish:lib": "npx semantic-release"
},
"private": "false",
"dependencies": {
"@angular/animations": "~15.1.2",
"@angular/common": "~15.1.2",
"@angular/compiler": "~15.1.2",
"@angular/core": "15.1.2",
"@angular/forms": "~15.1.2",
"@angular/platform-browser": "~15.1.2",
"@angular/platform-browser-dynamic": "~15.1.2",
"@angular/router": "~15.1.2",
"@angular/service-worker": "~15.1.2",
"@nrwl/angular": "15.6.2",
"d3": "^5.16.0",
"firebase": "^9.14.0",
"highlight.js": "^11.6.0",
"ngx-colors": "^3.1.3",
"ngx-toastr": "^15.1.0",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.1.3",
"@angular-eslint/eslint-plugin": "15.0.0",
"@angular-eslint/eslint-plugin-template": "15.0.0",
"@angular-eslint/template-parser": "15.0.0",
"@angular/cli": "~15.1.3",
"@angular/compiler-cli": "~15.1.2",
"@angular/language-service": "~15.1.2",
"@angular/pwa": "^15.1.3",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nrwl/cli": "15.6.2",
"@nrwl/cypress": "15.6.2",
"@nrwl/eslint-plugin-nx": "15.6.2",
"@nrwl/jest": "15.6.2",
"@nrwl/linter": "15.6.2",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/workspace": "15.6.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/d3": "^5.16.0",
"@types/jest": "28.1.8",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"codecov": "^3.8.3",
"copyfiles": "^2.4.1",
"cypress": "^9.1.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"git-cz": "4.9.0",
"husky": "^8.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "12.2.3",
"lint-staged": "^13.0.3",
"ng-packagr": "15.1.1",
"npm-run-all": "^4.1.5",
"nx": "15.6.2",
"postcss": "^8.4.5",
"postcss-import": "~14.1.0",
"postcss-preset-env": "~7.5.0",
"postcss-url": "~10.1.3",
"prettier": "^2.6.2",
"replace-json-property": "^1.8.0",
"semantic-release": "^19.0.3",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicDiceStudio/ng-whiteboard.git"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}