-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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
{
"name": "lsp-client",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"lint": "yarn tslint -- --fix -c ./tslint.json './src/**/*'",
"build-main": "yarn tsc -- --sourceMap --outFile ./main.js ./src/main.ts",
"build-index": "yarn tsc -- -p tsconfig.json",
"run-electron": "yarn electron .",
"styles": "yarn run stylus -- stylus/main.styl -o dist",
"debug": "yarn build-index",
"build": "yarn run styles && yarn lint && yarn build-main && yarn debug",
"dev": "yarn run build && yarn run start",
"start": "./Electron.app/Contents/MacOS/Electron ."
},
"dependencies": {
"@cycle/base": "^4.3.0",
"@cycle/dom": "^15.2.0",
"@cycle/rxjs-run": "^6.1.0",
"@cycle/storage": "^3.0.0",
"@cycle/xstream-run": "^4.2.0",
"@types/core-js": "^0.9.35",
"@types/electron": "^1.4.33",
"@types/ramda": "^0.0.4",
"electron": "^1.6.1",
"electron-default-menu": "^1.0.0",
"ramda": "^0.23.0",
"rxjs": "^5.2.0",
"stylus": "^0.54.5",
"tachyons": "^4.6.2",
"tachyons-flexbox": "^2.0.4",
"tslint": "^4.5.1",
"tslint-eslint-rules": "^3.4.0",
"typescript": "^2.2.1",
"vscode-languageserver-types": "^3.0.3",
"xstream": "^10.3.0"
}
}