-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"private": true,
"name": "hark-root-monorepo",
"version": "0.11.5",
"author": "Kir Belevich <[email protected]> (https://github.com/deepsweet)",
"contributors": [
"Franklin Davenport"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sparebytes/hark.git"
},
"scripts": {
"hark": "node ./bootstrap-hark.js",
"hark:debug": "node --inspect=127.0.0.1:44444 --inspect-brk ./bootstrap-hark.js",
"example": "cd example && yarn",
"tsc": "tsc",
"test": "jest"
},
"workspaces": [
".",
"packages/*",
"example",
"example/*"
],
"dependencies": {
"@babel/runtime": "^7.8.4",
"clipanion": "^2.3.1",
"core-js": "^3.6.0",
"core-js-pure": "^3.6.0",
"pifs": "^1.0.0",
"regenerator-runtime": "^0.13.3",
"rxjs": "^6.5.4",
"tslib": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@babel/register": "^7.8.3",
"@types/babel__core": "^7.1.4",
"@types/jest": "^25.1.3",
"@types/node": "^13.5.1",
"babel-jest": "^25.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"organize-imports-cli": "^0.7.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.1",
"typescript": "~3.8.3"
}
}