-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
executable file
·86 lines (86 loc) · 3.05 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
{
"name": "angular-material-app",
"description": "基于最新`Angular 11`框架与`Material 2`技术的企业级中后台前端应用框架。",
"homepage": "https://github.com/stbui/angular-material-app",
"bugs": "https://github.com/stbui/angular-material-app/issues",
"version": "0.11.0",
"license": "MIT",
"main": "dist/electron.js",
"scripts": {
"ng": "ng",
"start": "ng serve --hmr --configuration=development",
"build": "ng build --configuration=production --stats-json",
"build:github": "ng build --configuration=github --stats-json --base-href=/angular-material-app/",
"build:github:ngsw": "ng build --configuration=github",
"publish:github": "gh-pages -d dist",
"start:electron": "electron .",
"electron-copy": "cp ./scripts/electron/electron.js dist/",
"build-prod-electron": "ng build --configuration=production --base-href=./ && npm run electron-copy",
"build-pack-electron": "node ./scripts/electron/build.js",
"docs": "cd docs && gitbook build",
"compodoc": "./node_modules/.bin/compodoc -p tsconfig.json -s",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.9",
"@angular/cdk": "~11.2.9",
"@angular/common": "~11.2.9",
"@angular/compiler": "~11.2.9",
"@angular/core": "~11.2.9",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "~11.2.9",
"@angular/material": "~11.2.9",
"@angular/platform-browser": "~11.2.9",
"@angular/platform-browser-dynamic": "~11.2.9",
"@angular/pwa": "^0.1102.9",
"@angular/router": "~11.2.9",
"@angular/service-worker": "~11.2.9",
"@ngx-translate/core": "^13.0.0",
"@swimlane/dragula": "^3.8.0",
"@swimlane/ngx-charts": "^17.0.1",
"angular-calendar": "^0.28.22",
"core-js": "^3.10.1",
"date-fns": "^2.21.1",
"material-design-icons": "^3.0.1",
"ngx-quill": "13.2.0",
"normalize.css": "^8.0.1",
"quill": "1.3.7",
"rxjs": "6.6.7",
"screenfull": "^5.1.0",
"simplebar": "~5.3.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.9",
"@angular/cli": "~11.2.9",
"@angular/compiler-cli": "~11.2.9",
"@angular/language-service": "~11.2.9",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "~3.6.9",
"@types/jasminewd2": "~2.0.8",
"@types/node": "~14.14.41",
"codelyzer": "6.0.1",
"conventional-changelog-cli": "^ 2.1.1",
"gh-pages": "^3.1.0",
"gitbook-cli": "^2.3.2",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "6.1.2",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"protractor": "7.0.0",
"ts-node": "8.3.0",
"tslint": "6.1.3",
"typescript": "4.1.5",
"@angular-devkit/architect": "~0.1102.9",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1"
}
}