-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.74 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.74 KB
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
{
"name": "@mindfiredigital/angular-canvas-editor",
"version": "0.0.0-deveopment",
"type": "module",
"private" : false,
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "rm -rf dist && npm cache clean --force && ng build my-canvas-lib",
"watch": "ng build my-lib --watch --configuration development",
"test": "ng test",
"storybook": "ng run angular-canvas-document-editor:storybook",
"build-lib": "rm -rf dist && npm cache clean --force && ng build my-canvas-lib"
},
"dependencies": {
"@angular/animations": "^17.2.0",
"@angular/cdk": "^17.2.2",
"@angular/common": "^17.2.0",
"@angular/compiler": "^17.2.0",
"@angular/core": "^17.2.0",
"@angular/forms": "^17.2.0",
"@angular/material": "^17.2.2",
"@angular/platform-browser": "^17.2.0",
"@angular/platform-browser-dynamic": "^17.2.0",
"@angular/router": "^17.2.0",
"@mindfiredigital/canvas-editor": "^1.0.5",
"@ngrx/effects": "^18.0.2",
"@ngrx/store": "^18.0.2",
"@ngrx/store-devtools": "^18.0.2",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.2.3",
"@angular/cli": "^17.2.3",
"@angular/compiler-cli": "^17.2.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/angular": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/test": "^7.6.17",
"@types/jasmine": "~5.1.0",
"@types/jest": "^29.5.13",
"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",
"ng-packagr": "^17.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.22.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^23.0.0",
"storybook": "^7.6.17",
"typescript": "~5.3.2"
},
"peerDependencies": {
"rxjs": "^7.8.1"
},
"files": [
"dist/my-canvas-lib/",
"README.md",
"LICENSE"
],
"typings": "./dist/my-canvas-lib/index.d.ts",
"main": "./dist/my-canvas-lib/public-api.d.ts",
"release": {
"repositoryUrl": "https://github.com/mindfiredigital/angular-canvas-document-editor.git",
"branches": [
"main",
"next",
{
"name": "beta",
"prerelease": true
}
]
}
}