-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 2.09 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
{
"name": "angular-tui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"clear-dist": "rmdir /Q /S dist",
"publish-build": "ng build tui-image-editor-angular --configuration production",
"publish-npm": "cd dist/tui-image-editor-angular && npm publish",
"publish": "npm-run-all clear-dist publish-build publish-npm",
"compile-scss-min-tui-image-editor-angular": "sass projects/tui-image-editor-angular/src/theme.scss projects/tui-image-editor-angular/src/theme.min.css --style=compressed",
"build-tui-image-editor-angular": "ng build tui-image-editor-angular",
"link-tui-image-editor-angular": "cd ./dist/tui-image-editor-angular && npm link",
"build-and-link-tui-image-editor-angular": "npm-run-all build-tui-image-editor-angular link-tui-image-editor-angular"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.0.0",
"@angular/common": "^14.0.0",
"@angular/compiler": "^14.0.0",
"@angular/core": "^14.0.0",
"@angular/forms": "^14.0.0",
"@angular/localize": "^14.0.0",
"@angular/platform-browser": "^14.0.0",
"@angular/platform-browser-dynamic": "^14.0.0",
"@angular/router": "^14.0.0",
"@ng-bootstrap/ng-bootstrap": "^13.0.0",
"bootstrap": "^5.2.0",
"@popperjs/core": "^2.10.2",
"rxjs": "6.6.3",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.3",
"@angular/cli": "~14.0.3",
"@angular/compiler-cli": "^14.0.0",
"@types/node": "14.14.27",
"@types/jasmine": "~4.0.0",
"@types/jasminewd2": "2.0.8",
"codelyzer": "6.0.0",
"jasmine-core": "~4.1.0",
"jasmine-spec-reporter": "6.0.0",
"karma": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"ng-packagr": "^14.0.0",
"protractor": "7.0.0",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "~4.7.2",
"npm-run-all": "^4.1.5"
}
}