-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
79 lines (79 loc) · 2.41 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
{
"name": "react-monaco-editor-lite",
"version": "1.3.16",
"description": "",
"main": "dist/index.bundle.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"webpack": "webpack",
"build": "webpack --config webpack.build.js",
"build:demo": "webpack --config webpack.build.demo.js",
"start": "webpack serve",
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "npm run build && npm run doc && npm run build:demo",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && node replace.js && git add .",
"postversion": "git push && git push origin --tags",
"doc": "typedoc --options typedoc.json"
},
"keywords": [
"editor",
"monaco"
],
"repository": {
"type": "git",
"url": "https://github.com/x-orpheus/react-monaco-editor-lite"
},
"author": "wwsun",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/prettier": "^2.4.2",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"alias-jsconfig-webpack-plugin": "^1.0.2",
"babel-loader": "^8.2.3",
"conventional-changelog-cli": "^2.1.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.0",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.0.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typedoc": "^0.24.6",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^5.0.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"peerDependencies": {
"react": ">= 16.8",
"react-dom": ">=16.8"
},
"dependencies": {
"monaco-editor": "^0.38.0",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"onigasm": "^2.2.5",
"rc-dropdown": "4.2.0",
"rc-menu": "^9.13.0"
}
}