-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 977 Bytes
/
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
{
"name": "webpack-to-legacy",
"version": "0.0.1",
"description": "Showing how to refactor classic legacy jquery webapp with webpack HMR",
"main": "index.js",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"dev": "webpack-dev-server --hot --config webpack.config.dev.js",
"build": "webpack"
},
"keywords": [
"web",
"app",
"webpack",
"babel",
"es6",
"legacy-code",
"refactor"
],
"author": "Joshua Youngjae Ji",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.5.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.21.0",
"matchdep": "^1.0.1",
"path": "^0.12.7",
"node-uuid": "^1.4.7",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}