-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.96 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
{
"name": "@lsky/react-monaco-editor",
"version": "1.0.0-rc.9",
"main": "./lib/index.js",
"repository": "https://github.com/lsky-walt/react-monaco-editor.git",
"author": "lsky_walt <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --mode production --config ./webpack/webpack.pro.config.js",
"start": "webpack-dev-server --config ./webpack/webpack.dev.config.js",
"build-dist": "webpack --config ./webpack/webpack.dist.config.js",
"pub": "npm run build && npm publish --access public"
},
"keywords": [
"monaco-editor",
"react",
"react-monaco-editor"
],
"files": [
"lib",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.merge": "^4.6.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-virtualized": "^9.21.10",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"autoprefixer": "^9.8.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"html-webpack-plugin": "^4.3.0",
"less": "^3.11.3",
"less-loader": "^6.1.0",
"monaco-editor": "^0.23.0",
"postcss-loader": "^3.0.0",
"shineout": "^1.6.3-rc.37",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@lsky/v-table": "^0.0.4",
"clsx": "^1.1.1",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}