forked from debug-null/vue-simple-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.56 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
{
"name": "file-upload",
"version": "1.0.0",
"description": "大文件上传",
"main": "index.js",
"scripts": {
"start": "vue-cli-service serve",
"server": "node server/index.js",
"lint:js": "eslint --fix",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeyan1996/file-upload.git"
},
"keywords": [
"upload"
],
"author": "yeyan1996",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeyan1996/file-upload/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue,ts,tsx}": [
"npm run lint:js",
"git add"
]
},
"homepage": "https://github.com/yeyan1996/file-upload#readme",
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.4.3",
"dayjs": "^1.8.17",
"element-ui": "^2.13.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@types/fs-extra": "^8.0.1",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"fs-extra": "^8.1.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"multiparty": "^4.2.1",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"spark-md5": "^3.0.0",
"vue-template-compiler": "^2.6.10"
}
}