-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "webpack-developer-kit",
"version": "1.0.0",
"description": "Super Light Dev Kit for Webpack Developers",
"main": "",
"scripts": {
"dev": "webpack-dev-server --inline --content-base build/",
"build": "rimraf ./dist && webpack --config webpack.config.js",
"lint": "eslint .",
"test": "jest",
"debug": "node --inspect --debug-brk ./node_modules/webpack/bin/webpack.js --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/babel-webpack-tree-shaking.git"
},
"keywords": [
"tree-shaking",
"babel",
"webpack",
"toolkit",
"developer"
],
"author": {
"name": "Sean Larkin",
"email": "[email protected]"
},
"license": "MIT",
"jest": {
"rootDir": "./app/"
},
"dependencies": {},
"devDependencies": {
"@types/acorn": "^4.0.3",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-register": "^6.22.0",
"babili": "^0.0.10",
"babili-webpack-plugin": "^0.1.2",
"cheerio": "0.22.0",
"chromedriver": "2.27.2",
"enhanced-resolve": "^4.0.0",
"eslint": "^3.14.1",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.9.0",
"jasmine": "2.5.3",
"jest": "18.1.0",
"rimraf": "^2.5.4",
"typescript": "^2.9.0-dev.20180428",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-sources": "^1.1.0"
},
"babel": {
"presets": [
"es2015"
],
"sourceMaps": true,
"retainLines": true
}
}