-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.82 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
{
"name": "@lcu/reference-architecture",
"version": "0.0.57",
"scripts": {
"build:demo": "ng build demo --prod",
"deploy": "npm version patch && npm run deploy:all",
"deploy:all": "npm run deploy:common && npm run deploy:elements && npm run deploy:demo && npm run publish-projects",
"deploy:common": "npm version patch --prefix projects/common && ng build common && npm run copy:assets",
"deploy:demo": "npm version patch --prefix projects/demo && npm run build:demo && npm run build-pre-built-themes",
"deploy:elements": "npm version patch --prefix projects/elements && ng build elements && npm publish ./dist/elements --access public",
"build-pre-built-themes": "npm run build-themes && npm run copy:assets-demo-to-common",
"build-themes": "bash ./projects/demo/tools/build-themes.sh",
"publish-projects": "npm publish ./dist/common --access public && npm publish ./dist/demo --access public",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"copy:assets": "cpx \"./projects/common/assets/**/*\" \"./dist/common/assets/\"",
"copy:assets-demo": "cpx \"./projects/demo/assets/**/*\" \"./dist/common/assets/\"",
"copy:assets-demo-to-common": "cpx \"./dist/demo/assets/prebuilt-themes/**/*\" \"./dist/common/assets/prebuilt-themes\""
},
"private": false,
"dependencies": {
"@angular/animations": "^11.1.2",
"@angular/cdk": "^11.2.0",
"@angular/common": "^11.1.2",
"@angular/compiler": "^11.1.2",
"@angular/core": "^11.1.2",
"@angular/elements": "^11.1.2",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "^11.1.2",
"@angular/material": "^11.2.0",
"@angular/platform-browser": "^11.1.2",
"@angular/platform-browser-dynamic": "^11.1.2",
"@angular/router": "^11.1.2",
"@aspnet/signalr": "^1.1.4",
"@lcu/common": "^1.59.488",
"@lowcodeunit-devkit/ng-lcu": "^0.83.428",
"core-js": "^2.6.1",
"moment": "^2.29.4",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1101.4",
"@angular/cli": "^11.1.4",
"@angular/compiler-cli": "^11.1.2",
"@angular/language-service": "^11.1.2",
"@lcu/cli": "^1.2.9",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^13.13.36",
"codelyzer": "^6.0.0",
"cpx": "^1.5.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-momentum": "0.0.24",
"ng-packagr": "^11.2.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.3",
"typescript": "4.1.4"
}
}