-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.32 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
{
"name": "yapi-to-code",
"version": "1.0.0",
"description": "",
"main": "background.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js,.vue src/",
"dev": "webpack --watch --config ./build/webpack.dev.conf.js",
"build": "webpack --config ./build/webpack.prod.conf.js",
"analyze": "webpack --config ./build/webpack.prod.conf.js --analyze",
"publish": "node ./build/publish.js ",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xianshenglu/yapi-to-code.git"
},
"keywords": [
"yapi"
],
"author": "'xianshenglu' <'xianshenglu@foxmail.com'>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xianshenglu/yapi-to-code/issues"
},
"homepage": "https://github.com/xianshenglu/yapi-to-code#readme",
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@xianshenglu/eslint-config": "^1.0.0",
"archiver": "^5.1.0",
"babel-loader": "^8.2.1",
"babel-plugin-component": "^1.1.1",
"commitizen": "^4.2.2",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"mini-css-extract-plugin": "^1.3.1",
"monaco-editor-webpack-plugin": "^2.0.0",
"node-sass": "^5.0.0",
"prettier": "^2.1.2",
"release-it": "^14.2.1",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"vue-loader": "^15.9.5",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.21.0",
"clipboard": "^2.0.6",
"element-ui": "^2.14.1",
"lodash": "^4.17.20",
"monaco-editor": "^0.21.2",
"vue": "^2.6.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}