-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.27 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
{
"name": "vue-webpack-4",
"version": "1.0.0",
"description": "A Vuejs template using Webpack 4",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --progress --config build/webpack.config.dev.js",
"build": "webpack --config build/webpack.config.prod.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"test:unit": "jest --config test/jest.config.js",
"test": "npm run lint && npm run test:unit",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand --config test/jest.config.js"
},
"keywords": [
"Vue",
"Webpack 4"
],
"author": "Alex Moore",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"vue": "^2.6.11",
"vue-router": "^3.1.6",
"vuex": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@testing-library/vue": "^5.0.2",
"@vue/test-utils": "^1.0.0-beta.32",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.6",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"html-webpack-plugin": "^4.0.4",
"jest": "^25.2.7",
"jest-serializer-vue": "^2.0.2",
"lodash.template": "^4.5.0",
"node-sass": "^4.13.1",
"mini-css-extract-plugin": "^0.9.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"uglify-es": "^3.3.9",
"url-loader": "^4.0.0",
"vue-jest": "^3.0.5",
"vue-loader": "^15.9.1",
"vue-server-renderer": "^2.6.11",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}