-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.58 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
{
"name": "vv",
"description": "Neovim GUI Client",
"author": "Igor Gladkoborodov <[email protected]>",
"keywords": [
"vim",
"neovim",
"client",
"gui",
"electron"
],
"license": "MIT",
"main": "./build/main.js",
"sideEffects": false,
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn build:nvim; yarn build:browser-renderer; yarn build:server",
"build:nvim": "yarn workspace @vvim/nvim build",
"build:browser-renderer": "yarn workspace @vvim/browser-renderer build",
"build:electron": "yarn bootstrap; yarn workspace @vvim/electron build",
"build:server": "yarn workspace @vvim/server build",
"dev:nvim": "yarn workspace @vvim/nvim dev",
"dev:browser-renderer": "yarn workspace @vvim/browser-renderer dev",
"dev:electron": "yarn workspace @vvim/electron dev",
"dev:server": "yarn workspace @vvim/server dev",
"dev": "yarn bootstrap; npm-run-all --parallel dev:*",
"start:electron": "yarn workspace @vvim/electron start",
"start:server": "yarn workspace @vvim/server start",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"typecheck": "tsc -p packages/browser-renderer; tsc -p packages/electron; tsc -p packages/server",
"prepare": "husky install",
"codegen": "babel-node -x \".ts\" scripts/codegen.ts"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/node": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"codecov": "^3.8.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"jest": "^26.6.3",
"jest-github-actions-reporter": "^1.0.3",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"regenerator": "^0.14.7",
"ts-jest": "^26.5.4",
"typescript": "^4.2.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write"
]
},
"dependencies": {}
}