-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.51 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": "vuefs",
"description": "Vue skeleton with i18n router",
"version": "20.1.8",
"author": "JosephK",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"commons": "rm -rf node_modules/vuefs-commons && npm i",
"dev": "rm -rf ./public && cross-env NODE_ENV=development webpack-dev-server --open false --hot --mode development",
"preview": "rm -rf ./public && cross-env NODE_ENV=preview webpack --progress --hide-modules --mode production",
"prod": "rm -rf ./public && cross-env NODE_ENV=production webpack --progress --hide-modules --mode production"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.9.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.4",
"bootstrap-vue": "^2.8.0",
"country-code-emoji": "^1.0.0",
"fork-awesome": "^1.1.7",
"lodash": "^4.17.15",
"marked": "^0.8.2",
"roboto-fontface": "^0.10.0",
"vue": "^2.6.11",
"vue-headful": "^2.1.0",
"vue-i18n": "^8.15.6",
"vue-router": "^3.1.6",
"vuefs-commons": "git+https://[email protected]/josephk/vuefs.git#commons"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@prerenderer/renderer-jsdom": "^0.2.0",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"preload-webpack-plugin": "^3.0.0-beta.4",
"prerender-spa-plugin": "^3.4.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-subresource-integrity": "^1.4.0",
"yaml-import-loader": "^1.3.6"
}
}