forked from LHNCBC/lforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.74 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
87
88
89
90
91
92
93
94
95
{
"name": "lforms",
"version": "30.0.0-beta.2",
"keywords": [
"fhir",
"Questionnaire",
"SDC"
],
"main": "src/main.ts",
"repository": "github:lhncbc/lforms",
"license": "See LICENSE.md",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-public": "node bin/start-public.js",
"start-dist-public": "node bin/start-public.js --dist",
"build:lforms-dev": "ng build",
"build:lforms": "ng build --prod --extra-webpack-config webpack.lforms.extra.config.js && node concatenate.js",
"build": "npm run build:fhir && npm run build:lforms && npm run build:prepare-zip && npm run build:zip",
"lint": "ng lint",
"copy-built-files": "shx cp -rf dist/latest/webcomponent src/test/lib/",
"copy-fhir-lib": "shx cp -rf dist/latest/fhir src/test/lib/",
"copy": "npm run copy-built-files && npm run copy-fhir-lib",
"test:fhir-unit": "karma start test/karma.conf.js",
"test:ng-unit": "ng test --watch=false",
"test:unit": "npm run test:fhir-unit && npm run test:ng-unit",
"test:e2e": "ng e2e --port 4201 --webdriverUpdate=false",
"test:e2e:prepare": "npm run copy && npm run update-webdriver",
"test": "npm run test:e2e:prepare && npm run test:unit && npm run test:e2e",
"test-coverage": "ng test --no-watch --code-coverage",
"update-webdriver": "node node_modules/protractor/bin/webdriver-manager update --versions.chrome $(google-chrome --version |awk '{print $NF}')",
"build:clean": "rm -rf dist",
"build:mkdist": "mkdir dist; mkdir -p dist/$npm_package_name-$npm_package_version; (cd dist; ln -s $npm_package_name-$npm_package_version latest)",
"build:prepare-zip": "node prepare-zip.js",
"build:zip": "cd dist; dirname=$npm_package_name-$npm_package_version; zip -r $dirname.zip $dirname",
"build:version": "node -e 'require(\"fs\").writeFileSync(\"src/version.json\", JSON.stringify({lformsVersion: require(\"./package.json\").version}))'",
"webpack": "webpack",
"webpack:fhir": "webpack --config ./webpack.fhir.config.js --env fhirOnly=true",
"build:fhir": "npm run build:clean && npm run build:mkdist && npm run build:version && npm run webpack:fhir"
},
"dependencies": {
"@angular/animations": "~11.2.14",
"@angular/common": "~11.2.14",
"@angular/compiler": "~11.2.14",
"@angular/core": "~11.2.14",
"@angular/elements": "^11.2.14",
"@angular/forms": "~11.2.14",
"@angular/platform-browser": "~11.2.14",
"@angular/platform-browser-dynamic": "~11.2.14",
"@angular/router": "~11.2.14",
"@lhncbc/ucum-lhc": "^4.1.4",
"@types/jquery": "^3.5.5",
"autocomplete-lhc": "^18.2.0",
"fast-copy": "^2.1.1",
"fast-deep-equal": "^3.1.3",
"fhirpath": "^2.10.1",
"jquery": "^3.5.1",
"moment": "^2.29.1",
"ng-zorro-antd": "^11.4.1",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "~6.6.7",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.15",
"@angular/cli": "^11.2.14",
"@angular/compiler-cli": "~11.2.14",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"chai": "^4.3.4",
"codelyzer": "^6.0.0",
"concat": "^1.0.3",
"fs-extra": "^9.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^9.1.3",
"ngx-build-plus": "^11.0.0",
"protractor": "~7.0.0",
"shx": "^0.3.3",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.8",
"webpack-cli": "^4.9.1"
}
}