-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.51 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.51 KB
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
{
"name": "webpack-devstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --config webpack.dev.js",
"build": "webpack --env production --config webpack.prod.js",
"dev:normal": "webpack --config webpack.dev.js",
"dev:server": "webpack-dev-server --config webpack.dev.js",
"dev-node-nightly": "node-nightly --inspect ./node_modules/webpack/bin/webpack.js --config webpack.dev.js"
},
"keywords": [],
"author": "Bohdan Partyk <bohdan@partyk.cz>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.5",
"babel-plugin-loop-optimizer": "^1.4.1",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.1",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"deepmerge": "^4.0.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^7.1.0",
"eslint-config-standart-partyk": "^2.0.0-beta.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-vue": "^6.0.1",
"expose-loader": "^1.0.0",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"icon-font-loader": "^3.0.0",
"image-webpack-loader": "^6.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"less": "^3.10.3",
"less-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.12.0",
"pixrem": "^5.0.0",
"postcss-discard-duplicates": "^4.0.2",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.0",
"sass-loader": "^9.0.2",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^3.0.2",
"ts-loader": "^8.0.1",
"typescript": "^3.6.4",
"typescript-eslint-parser": "^22.0.0",
"url-loader": "^4.1.0",
"vue-eslint-parser": "^7.0.0",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.2.3",
"webpack-dashboard": "^3.0.7",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^5.0.9",
"webpackbar": "^4.0.0"
},
"dependencies": {
"core-js": "^3.1.4",
"jquery": "^3.4.1",
"regenerator-runtime": "^0.13.3",
"vue": "^2.6.11",
"vue-router": "^3.1.3"
}
}