-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "vue-webpack-4",
"version": "1.1.0",
"description": "A Vuejs template using Webpack 4",
"main": "index.js",
"scripts": {
"dev": "webpack serve --progress --config build/webpack.config.dev.js",
"prod": "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": "Daniel Cook",
"license": "MIT",
"dependencies": {
"vue": "^2.6.14",
"vue-router": "^3.5.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@testing-library/vue": "^5.8.2",
"@vue/test-utils": "^1.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.16.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"jest-serializer-vue": "^2.0.2",
"lodash.template": "^4.5.0",
"mini-css-extract-plugin": "^2.2.0",
"style-loader": "^3.2.1",
"stylus": "^0.54.8",
"stylus-loader": "^6.1.0",
"uglify-es": "^3.3.9",
"url-loader": "^4.1.1",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.8",
"vue-server-renderer": "^2.6.14",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}