-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.32 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.32 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
{
"name": "ngx-laydate",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"clean": "rm -rf dist",
"build:lib": "ng build ngx-laydate",
"build:lib:prod": "ng build ngx-laydate --configuration production",
"update:readme": "cpr README.md dist/ngx-laydate/README.md -o",
"build:dist": "run-s clean build:lib:prod update:readme",
"clean:docs": "rm -rf docs",
"build:docs": "ng build example --configuration production --output-path docs --base-href /ngx-laydate/",
"build:compodoc": "compodoc -p projects/ngx-laydate/tsconfig.lib.json -d docs/api-docs --theme stripe",
"build:fs": "node scripts/fs",
"build:ghpages": "npx angular-cli-ghpages --dir dist/example",
"build:deploy": "run-s clean build:docs build:compodoc build:fs build:ghpages",
"build:ci": "run-s clean:docs build:docs build:compodoc build:fs",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"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",
"@compodoc/compodoc": "^1.1.19",
"layui-laydate": "^5.3.1",
"marked": "^4.2.12",
"ng-zorro-antd": "~16.0.0",
"ngx-markdown": "~16.0.0",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~16.0.0",
"@angular/cli": "~16.0.0",
"@angular/compiler-cli": "~16.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/marked": "^4.0.8",
"@types/node": "^18.0.0",
"codelyzer": "^6.0.2",
"cpr": "^3.0.1",
"html-loader": "^3.1.2",
"jasmine-core": "~4.3.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^16.1.0",
"npm-run-all": "^4.1.5",
"protractor": "~7.0.0",
"raw-loader": "^4.0.2",
"ts-node": "~10.8.1",
"tslint": "~6.1.3",
"typescript": "~5.0.4"
}
}