-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
{
"name": "yuzai-base-editor",
"version": "1.0.34",
"description": "",
"main": "dist/index.bundle.js",
"typings": "dist/index.d.ts",
"scripts": {
"webpack": "webpack",
"build": "webpack --config webpack.build.js",
"builddemo": "webpack --config webpack.build.demo.js",
"dev": "webpack serve --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "npm run build && npm run doc",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && node replace.js && git add .",
"postversion": "git push && git push origin --tags",
"doc": "typedoc src/index.ts --plugin typedoc-plugin-missing-exports --options typedoc.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"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": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@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": "^0.30.1",
"monaco-editor-webpack-plugin": "^5.0.0",
"node-sass": "^6.0.1",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typedoc": "^0.22.9",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"monaco-editor-textmate": "^3.0.0",
"monaco-textmate": "^3.0.1",
"onigasm": "^2.2.5"
}
}