-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
79 lines (79 loc) · 2.77 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
{
"name": "angular2-draggable-demo",
"version": "16.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --port=4202",
"build": "ng build",
"build:prod": "ng build --configuration production --base-href ./",
"build:lib": "ng build angular2-draggable",
"build:lib:prod": "ng build angular2-draggable --configuration production",
"build:css": "node scripts/build-scss.js",
"test": "ng test",
"test:lib": "ng test angular2-draggable",
"lint": "ng lint",
"fix": "ng lint --fix",
"e2e": "ng e2e",
"clean": "rimraf -rf dist",
"compodoc": "compodoc -p projects/angular2-draggable/tsconfig.lib.json -d dist/docs/api-doc --theme stripe",
"serve:doc": "compodoc -p projects/angular2-draggable/tsconfig.lib.json -s",
"build:doc": "run-s build:prod compodoc",
"update:file": "cpr README.md dist/angular2-draggable/README.md -o && cpr CHANGELOG.md dist/angular2-draggable/CHANGELOG.md -o",
"release": "run-s clean dist build:doc",
"demo": "run-s build:lib build:css start",
"dist": "run-s clean build:lib:prod build:css update:file"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.0",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@ant-design/icons-angular": "^15.0.0",
"ng-zorro-antd": "15.1.0",
"ngx-markdown": "^16.0.0",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.2",
"@angular-eslint/builder": "^16.0.2",
"@angular-eslint/eslint-plugin": "^16.0.2",
"@angular-eslint/eslint-plugin-template": "^16.0.2",
"@angular-eslint/schematics": "^16.0.2",
"@angular-eslint/template-parser": "^16.0.2",
"@angular/cli": "~16.0.2",
"@angular/compiler-cli": "^16.0.0",
"@compodoc/compodoc": "^1.1.19",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cpr": "^3.0.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"html-loader": "^4.2.0",
"jasmine-core": "~4.6.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.0.0",
"ng-packagr": "^16.0.0",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"raw-loader": "^4.0.2",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "~5.0.2"
}
}