-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
102 lines (102 loc) · 3.38 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "codeium-chrome",
"version": "1.26.3",
"description": "",
"license": "MIT",
"scripts": {
"build": "pnpm generate && pnpm lint && webpack --config webpack.prod.js && cd dist && zip -r ../dist.zip .",
"build:enterprise": "pnpm generate && pnpm lint && webpack --config webpack.prod.js --env enterprise && cd dist_enterprise && zip -r ../dist_enterprise.zip .",
"generate": "rm -rf ./proto && node generate.js",
"preinstall": "npx only-allow pnpm",
"lint": "tsc --noEmit && eslint --ext .ts,.tsx --max-warnings=0 .",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"start": "pnpm generate && webpack --watch --config webpack.dev.js",
"start:enterprise": "pnpm generate && webpack --watch --config webpack.dev.js --env enterprise"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"pnpm prettier",
"pnpm lint"
]
},
"browserslist": "last 10 Chrome versions",
"dependencies": {
"@babel/runtime": "^7.18.6",
"@bufbuild/protobuf": "1.9.0",
"@connectrpc/connect": "1.4.0",
"@connectrpc/connect-web": "1.4.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.2",
"normalize.css": "^8.0.1",
"object-assign": "^4.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@bufbuild/buf": "1.36.0",
"@bufbuild/protoc-gen-es": "1.9.0",
"@connectrpc/protoc-gen-connect-es": "1.4.0",
"@jupyterlab/application": "^3.5.2",
"@jupyterlab/codeeditor": "^3.5.2",
"@jupyterlab/codemirror": "^3.5.2",
"@jupyterlab/docmanager": "^3.5.2",
"@jupyterlab/fileeditor": "^3.5.2",
"@jupyterlab/notebook": "^3.5.2",
"@lumino/disposable": "^2.1.2",
"@lumino/widgets": "^1.36.0",
"@types/chrome": "^0.0.246",
"@types/codemirror": "^5.60.6",
"@types/prop-types": "^15.7.8",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.21",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"dotenv": "^16.3.1",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"monaco-editor": "^0.34.1",
"prettier": "^2.8.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"svg-inline-loader": "^0.8.2",
"typescript": "^4.9.4",
"utility-types": "^3.10.0",
"webpack": "^5.80.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.13.3",
"webpack-merge": "^5.8.0",
"yjs": "^13.6.8"
},
"pnpm": {
"patchedDependencies": {
"@jupyterlab/[email protected]": "patches/@jupyterlab+codeeditor+3.5.2.patch",
"@jupyterlab/[email protected]": "patches/@jupyterlab+shared-models+3.5.2.patch"
}
}
}