-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "hm-infer",
"version": "1.0.0",
"author": "Peter Gleeson <petergleeson.dev@gmail.com>",
"license": "MIT",
"bolt": {
"workspaces": [
"packages/*"
]
},
"scripts": {
"compile": "tsc -b",
"test": "jest --watch",
"build": "cd packages/core && babel src -d dist --root-mode upward",
"watch": "tsc -b -w"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-flow": "^7.0.0-rc.1",
"@types/node": "^8.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.4.2",
"flow-bin": "^0.78.0",
"flow-typed": "^2.5.1",
"jest": "^24.9.0",
"jest-expect-contain-deep": "^1.0.1",
"typescript": "^3.2.4",
"vscode": "^1.1.27"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/parser": "^7.3.4",
"@babel/traverse": "^7.3.4",
"@babel/types": "^7.3.4",
"path": "^0.12.7",
"vscode-languageclient": "^4.1.4",
"vscode-languageserver": "^4.1.3"
}
}