-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.83 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.83 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
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
{
"name": "sm-webpack-config",
"version": "1.4.0",
"description": "Webpack Configuration With Vue, Babel & Hot Reloading",
"main": "index.js",
"repository": "smartprix/sm-webpack-config",
"directories": {
"test": "test"
},
"types": "index.d.ts",
"scripts": {
"test": "npm run lint && npm run test-only",
"lint": "eslint src"
},
"bin": {
"sm-webpack": "bin/sm-webpack-cli.js"
},
"author": "Hitesh Khandelwal <hitesh@smartprix.com> (http://www.smartprix.com/)",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-stage-3": "^7.0.0",
"@babel/register": "^7.7.0",
"@babel/runtime": "^7.7.2",
"@types/webpack": "^4.41.0",
"@types/webpack-bundle-analyzer": "^2.13.3",
"@types/webpack-dev-server": "^3.4.0",
"@vue/babel-preset-jsx": "^1.1.2",
"address": "^1.1.2",
"babel-loader": "8.0.6",
"babel-plugin-transform-imports": "^2.0.0",
"cache-loader": "^4.1.0",
"caniuse-lite": "^1.0.30001011",
"chalk": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"cliui": "^6.0.0",
"commander": "^4.0.1",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3.4.1",
"css-loader": "^3.2.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"file-loader": "^4.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"ghost-progress-webpack-plugin": "^0.1.0",
"hash-sum": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.8.0",
"json-loader": "^0.5.7",
"launch-editor-middleware": "^2.2.1",
"lodash": "^4.17.15",
"make-dir": "^3.0.0",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^0.8.0",
"node-notifier": "^10.0.0",
"null-loader": "^3.0.0",
"open": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.23",
"postcss-at-rules-variables": "^0.1.10",
"postcss-combine-media-query": "^1.0.0",
"postcss-conditionals": "^2.1.0",
"postcss-each": "^0.10.0",
"postcss-extend": "^1.0.5",
"postcss-for": "^2.1.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-rem": "^1.1.4",
"postcss-simple-vars": "^5.0.2",
"postcss-utilities": "^0.8.4",
"rollup": "^1.27.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.3",
"saladcss-bem": "^0.0.2",
"terser-webpack-plugin": "^2.2.1",
"url-loader": "^2.2.0",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.9.0",
"webpack-hot-client": "^4.1.2",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-smartprix": "^3.5.4",
"vue": "^2.6.10",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"eslint": "*",
"eslint-config-smartprix": "*",
"vue": "*",
"vue-server-renderer": "*",
"vue-template-compiler": "*"
},
"eslintConfig": {
"extends": "smartprix",
"rules": {}
},
"config": {
"ghooks": {
"pre-commit": "npm run build && npm test && npm run check-coverage"
}
}
}