-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "typescript-webpack-tree-shaking",
"version": "1.0.0",
"description": "Tree-shaking example with Typescript and Webpack",
"main": "index.js",
"scripts": {
"webpack": "webpack --config webpack.config.js",
"webpack-prod": "webpack --config webpack.prod.config.js",
"webpack-es2015": "webpack --config webpack.es2015.config.js",
"webpack-es2015-prod": "webpack --config webpack.es2015.prod.config.js",
"serve": "http-server -a 0.0.0.0 -p 9000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/typescript-webpack-tree-shaking.git"
},
"keywords": [
"tree-shaking",
"typescript",
"webpack"
],
"author": {
"name": "blacksonic",
"email": "soos.gabor86@gmail.com"
},
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-core": "6.21.0",
"babel-preset-latest": "6.16.0",
"babili": "0.0.9",
"babili-webpack-plugin": "0.0.7",
"http-server": "0.9.0",
"ts-loader": "1.3.2",
"typescript": "2.0.10",
"webpack": "2.1.0-beta.27"
}
}