-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "webpack-deps-tree",
"version": "0.0.1",
"author": "Mikhail Shustov <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.3.19",
"d3": "^3.5.17",
"fixed-data-table-2": "^0.7.17",
"history": "3.2.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.4",
"react": "15.4.1",
"react-dimensions": "^1.3.0",
"react-dom": "15.4.1",
"react-github-corner": "^0.3.0",
"react-table": "^5.6.0",
"source-map": "^0.5.6"
},
"devDependencies": {
"awesome-typescript-loader": "^3.1.3",
"babel-core": "^6.4.5",
"babel-eslint": "^7.0.0",
"babel-loader": "6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.0",
"css-loader": "^0.25.0",
"gh-pages": "^1.0.0",
"html-webpack-inline-source-plugin": "0.0.9",
"html-webpack-plugin": "^2.22.0",
"source-map-loader": "^0.2.1",
"style-loader": "^0.13.1",
"tslint": "^5.4.2",
"tslint-react": "^3.0.0",
"typescript": "^2.3.2",
"typings": "^2.1.1",
"webpack": "2.4.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.6.4"
},
"scripts": {
"build": "export NODE_ENV=production; webpack",
"dev": "webpack-dev-server --inline --hot --open --progress --colors --content-base .",
"prepublish": "npm run build",
"publish": "node ./tools/publish.js",
"install:typings": "typings install",
"test": "mocha --opts test/mocha.opts",
"lint": "tslint src/"
}
}