This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
79 lines (79 loc) · 2.56 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
{
"private": true,
"repository": "[email protected]:bumbag/bumbag-ui.git",
"author": "jxom <[email protected]>",
"license": "MIT",
"scripts": {
"build": "lerna run build --ignore website",
"build:fab": "yarn build && lerna run build:fab",
"clean": "lerna run clean --stream",
"develop": "lerna run develop --scope=bumbag --stream",
"docs": "lerna run start --scope=bumbag-website --stream",
"prepare": "lerna run prepare",
"clean-packages": "lerna clean",
"publish-packages": "lerna publish",
"lint": "lerna run lint",
"test": "exit 0",
"test-packages": "lerna run test --stream",
"type-check": "lerna run type-check --stream"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.6",
"@babel/plugin-proposal-optional-chaining": "7.9.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.9.6",
"@babel/preset-flow": "7.9.0",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@emotion/jest": "11.2.1",
"@medipass/eslint-config-react-medipass": "8.9.9",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-commonjs": "16.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@rollup/plugin-replace": "2.3.4",
"@rollup/plugin-url": "5.0.1",
"@types/jest": "26.0.20",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-native": "0.63.44",
"@typescript-eslint/parser": "3.4.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.1.0",
"babel-plugin-emotion": "10.0.33",
"babel-polyfill": "6.26.0",
"cross-spawn": "6.0.5",
"esbuild-register": "^3.0.0",
"eslint": "7.1.0",
"eslint-plugin-emotion": "10.0.27",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-typescript": "0.14.0",
"fs-extra": "8.1.0",
"jest": "26.6.3",
"lerna": "3.21.0",
"prettier": "2.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"reakit": "^1.2.2",
"rimraf": "3.0.2",
"rollup": "2.33.3",
"rollup-plugin-ignore": "1.0.9",
"rollup-plugin-proxy-directories": "1.2.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.4.2"
},
"workspaces": {
"packages": [
"packages/*",
"website"
]
}
}