-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
130 lines (130 loc) · 3.67 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "vue-vant-template",
"version": "2.1.1",
"description": "A vue mobile template with Vue-CLI, Vuex, Vue-Router, Vant, Axios, Scss, Mock, Eslint and Viewport adaptation scheme...",
"author": "Jackie <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve --open",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"build:test": "vue-cli-service build --mode test",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src",
"test:unit": "jest --clearCache && vue-cli-service test:unit",
"test:ci": "npm run lint && npm run test:unit",
"svgo": "svgo -f src/assets/icons/svg --config=src/assets/icons/svgo.config.js",
"new": "plop",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix"
]
},
"keywords": [
"vue",
"vant",
"boilerplate",
"vue-vant-template",
"vue-mobile-template"
],
"repository": {
"type": "git",
"url": "https://github.com/JackieCheung/vue-vant-template.git"
},
"bugs": {
"url": "https://github.com/JackieCheung/vue-vant-template/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^2.0.2",
"async-validator": "^3.5.2",
"axios": "^0.21.1",
"core-js": "^3.12.1",
"dayjs": "^1.10.4",
"driver.js": "^0.9.8",
"dropzone": "^5.9.2",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"fuse.js": "^6.4.6",
"js-base64": "^3.6.0",
"js-cookie": "^2.2.1",
"jsonlint": "^1.6.3",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.0",
"quill": "^1.3.7",
"sortablejs": "^1.13.0",
"vant": "^2.12.19",
"vue": "^2.6.12",
"vue-cropper": "^0.5.6",
"vue-pdf": "^4.2.0",
"vue-quill-editor": "^3.0.6",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/test-utils": "^1.2.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-component": "^1.1.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-import": "^1.13.3",
"babel-plugin-lodash": "^3.3.4",
"chalk": "^4.1.1",
"chokidar": "^3.5.1",
"compression-webpack-plugin": "^6.1.1",
"connect": "^3.7.0",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-plugin-vue": "^7.9.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"lodash-webpack-plugin": "^0.11.6",
"mockjs": "^1.1.0",
"multer": "^1.4.2",
"plop": "^2.7.4",
"postcss-px-to-viewport": "^1.1.1",
"sass": "^1.32.13",
"sass-loader": "^10.1.1",
"scp2": "^0.5.0",
"script-ext-html-webpack-plugin": "^2.1.5",
"script-loader": "^0.7.2",
"serve-static": "^1.14.1",
"ssh2": "^0.8.9",
"svg-sprite-loader": "^6.0.6",
"svgo": "^2.3.0",
"svgo-loader": "^3.0.0",
"tasksfile": "^5.1.1",
"vue-template-compiler": "^2.6.12",
"webpack-bundle-analyzer": "^4.4.2"
},
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"Android >= 4.0",
"iOS >= 8"
]
}