-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 3.31 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
{
"name": "infection-risk-assessment-app",
"private": true,
"version": "0.0.0",
"description": "Assessing the risk of contagious viral infections (COVID-19)",
"repository": "https://github.com/CovOpen/Covapp-2.0",
"scripts": {
"analyze": "stencil build",
"generate": "stencil generate",
"prebuild": "npm run prepare-customization",
"build": "stencil build && echo $(date) > www/version.txt",
"build-charite": "npm run prepare-charite && cross-env LAYOUT=CHARITE npm run build",
"build-stanford": "npm run prepare-stanford && cross-env SUPPORTED_LANGUAGES=en npm run build",
"prestart": "npm run prepare-customization",
"start": "stencil build --dev --watch --serve --no-open",
"prepare-customization": "node ./scripts/prepare-customization.js",
"test": "stencil test --spec",
"test:watch": "stencil test --spec --watchAll",
"test:e2e": "stencil test --e2e",
"test:all": "stencil test --spec --e2e",
"test:all:watch": "stencil test --spec --e2e --watchAll",
"test:cy:run": "cypress run",
"test:cy:open": "cypress open",
"code-format": "npx prettier --write 'src/**/*.{tsx,css,ts}'",
"prepare-bmg": "rimraf custom && mkdir custom && copyfiles ./deploy/bmg/**/* custom -u 2 -V && copyfiles ./deploy/bmg/* custom -u 2 -V",
"prepare-bzga": "rimraf custom && mkdir custom && copyfiles ./deploy/bzga/**/* custom -u 2 -V && copyfiles ./deploy/bzga/* custom -u 2 -V",
"prepare-charite": "rimraf custom && mkdir custom && copyfiles ./deploy/charite/**/* custom -u 2 -V && copyfiles ./deploy/charite/* custom -u 2 -V",
"prepare-rki": "rimraf custom && mkdir custom && copyfiles ./deploy/rki/**/* custom -u 2 -V && copyfiles ./deploy/rki/* custom -u 2 -V",
"prepare-stanford": "rimraf custom && mkdir custom && copyfiles ./deploy/stanford/**/* custom -u 2 -V && copyfiles ./deploy/stanford/* custom -u 2 -V",
"start-charite": "npm run prepare-charite && cross-env LAYOUT=CHARITE npm run start",
"start-stanford": "npm run prepare-stanford && cross-env SUPPORTED_LANGUAGES=en npm run start",
"release": "semantic-release",
"api-proxy": "node ./scripts/devProxy.js"
},
"devDependencies": {
"@lokalise/node-api": "^6.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"@stencil/core": "^2.6.0",
"@stencil/router": "^1.0.1",
"@types/jest": "26.0.23",
"@types/puppeteer": "5.4.3",
"copyfiles": "^2.4.1",
"cypress": "^10.4.0",
"deep-assign": "^3.0.0",
"dotenv": "^10.0.0",
"javascript-stringify": "^2.1.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"jest-localstorage-mock": "^2.4.14",
"prettier": "^2.3.1",
"puppeteer": "10.0.0",
"rollup-plugin-visualizer": "^4.2.2",
"semantic-release": "^17.2.1",
"workbox-build": "6.1.5"
},
"license": "MIT",
"dependencies": {
"@covopen/covquestions-js": "1.5.0",
"@d4l/web-components-library": "^2.22.4",
"@sentry/browser": "6.7.1",
"cross-env": "^7.0.3",
"dompurify": "^2.2.9",
"http-proxy": "^1.18.1",
"i18next": "^20.3.2",
"i18next-browser-languagedetector": "6.1.2",
"pure-svg-code": "^1.0.6",
"rollup-plugin-node-polyfills": "^0.2.1"
}
}