-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.7 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.7 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "glm-ppt-front",
"version": "0.1.0",
"private": true,
"scripts": {
"pnpm:i": "pnpm i",
"init": "pnpm install --registry=https://registry.npmmirror.com/ --unsafe-perm",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"eslint": "eslint --ext .js,.vue src",
"fix": "eslint --fix --ext .js,.ts,.vue src",
"lint:js": "eslint --ext \".js,.vue\" --cache --ignore-path .gitignore .",
"lint:style": "stylelint \"src/*.{css,less,scss,sass,vue}\" --cache --ignore-path .stylelintignore",
"lint:prettier": "prettier --check .",
"lintfix": "prettier --write --list-different . && npm run lint:js -- --fix && npm run lint:style -- --fix",
"prepare": "husky install",
"lint-staged": "lint-staged",
"analyze": "npm_config_report=true npm run build:analyze"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.11.0",
"@codemirror/lint": "^6.8.4",
"@codemirror/search": "^6.5.10",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.4",
"@fortaine/fetch-event-source": "^3.0.6",
"axios": "^0.24.0",
"codemirror": "^6.0.1",
"core-js": "^3.23.1",
"dayjs": "^1.11.3",
"element-ui": "^2.15.14",
"fingerprintjs2": "^2.1.4",
"flag-icons": "^6.9.2",
"highlight.js": "11.3.1",
"jquery": "^3.6.0",
"katex": "^0.16.11",
"lodash-es": "^4.17.21",
"markdown-it-vue": "^1.1.7",
"parse5": "^6.0.1",
"smoothscroll-polyfill": "^0.4.4",
"vue": "^2.6.14",
"vue-clamp": "^0.4.1",
"vue-clipboard2": "^0.3.3",
"vue-contextmenu": "^1.5.11",
"vue-cropper": "^0.5.8",
"vue-i18n": "^8.28.2",
"vue-multipane": "^0.9.5",
"vue-router": "^3.5.4",
"vue-screen": "^1.5.6",
"vuex": "^3.6.2",
"wavesurfer.js": "^7.9.5"
},
"devDependencies": {
"@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
"@vue/cli-plugin-babel": "~4.5.17",
"@vue/cli-plugin-eslint": "~4.5.17",
"@vue/cli-plugin-pwa": "~4.5.17",
"@vue/cli-plugin-router": "~4.5.17",
"@vue/cli-plugin-vuex": "~4.5.17",
"@vue/cli-service": "~4.5.17",
"@vue/eslint-config-standard": "^5.1.2",
"autoprefixer": "9.8.8",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"babel-plugin-prismjs": "^2.1.0",
"babel-preset-env": "^1.7.0",
"bundle-stats-webpack-plugin": "^4.17.0",
"compression-webpack-plugin": "^5.0.2",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^7.0.4",
"image-webpack-loader": "^8.1.0",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"lint-staged": "^12.5.0",
"postcss-html": "^1.4.1",
"prettier": "^2.7.1",
"speed-measure-webpack-plugin": "^1.5.0",
"style-resources-loader": "^1.5.0",
"stylelint": "^15.6.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^33.0.0",
"svg-sprite-loader": "^6.0.11",
"svgo": "^2.8.0",
"thread-loader": "^3.0.4",
"useless-files-webpack-plugin": "^1.0.1",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.10.1",
"worker-loader": "^3.0.8"
},
"lint-staged": {
"*.**": [
"npm run lintfix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MetaGLM/glm-ppt-front.git"
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china"
}
}