-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.97 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
{
"name": "@ehealth/monorepo",
"private": true,
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@ehealth/admin": "file:packages/admin",
"@ehealth/admin-legacy": "file:packages/admin-legacy",
"@ehealth/auth": "file:packages/auth",
"@ehealth/gatekeeper": "file:packages/gatekeeper",
"@ehealth/iit-digital-signature": "file:packages/iit-digital-signature",
"@ehealth/iit-proxy": "file:packages/iit-proxy",
"@ehealth/mock-server": "file:packages/mock-server",
"@ehealth/patient-account": "file:packages/patient-account",
"@ehealth/polyfill": "file:packages/polyfill",
"lerna": "3.0.6",
"match-sorter": "^2.3.0",
"npm-package-filter": "^0.1.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@ehealth/scripts": "file:packages/scripts",
"@ehealth/test-preset": "file:packages/test-preset",
"@lingui/cli": "^2.7.2",
"@lingui/macro": "^2.7.2",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-react-app": "^6.1.0",
"blade.macro": "^0.1.11",
"flow-bin": "^0.100.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"prettier": "^1.10.2",
"pretty-quick": "^1.4.1",
"react-test-renderer": "^16.4.1"
},
"scripts": {
"start": "lerna run start --parallel",
"prepare": "lerna run transpile",
"pretest": "npm run prepare",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --config jest.config.unit.js",
"test:e2e": "jest --config jest.config.e2e.js",
"precommit": "pretty-quick --staged",
"release": "lerna version --no-push",
"image:build": "lerna run image:build --stream",
"image:test": "lerna run image:test --stream",
"image:build-and-test": "lerna run image:build-and-test --stream",
"image:push": "lerna run image:push --stream",
"chart:update": "lerna run chart:update --stream --concurrency 1",
"chart:deploy": "ehealth-scripts chart deploy"
},
"workspaces": [
"packages/*"
]
}