-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.81 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
{
"name": "trace-diff",
"version": "1.0.0",
"description": "TraceDiff: Debugging Unexpected Code Behavior Using Trace Divergences",
"main": "src/index.js ",
"scripts": {
"start": "webpack-dev-server --hot --inline",
"build": "webpack --color --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryosuzuki/trace-diff.git"
},
"author": "Ryo Suzuki <ryosuzk@googlemail.com> (http://ryosuzuki.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryosuzuki/trace-diff/issues"
},
"homepage": "https://github.com/ryosuzuki/trace-diff#readme",
"dependencies": {
"async": "^2.1.4",
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"consolidate": "^0.14.5",
"d3": "^2",
"diff": "^3.2.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"font-awesome": "^4.7.0",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"highlight.js": "^9.9.0",
"jquery": "^3.1.1",
"jquery-ui": "^1.12.1",
"jquery-ui-bundle": "^1.12.1",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"moment": "^2.17.1",
"mousetrap": "^1.6.0",
"nedb": "^1.8.0",
"nedb-promise": "^2.0.1",
"python-shell": "^0.4.0",
"radium": "^0.18.1",
"rc-slider": "^6.0.1",
"rc-tooltip": "^3.4.2",
"react": "^15.4.2",
"react-commits-graph": "^0.2.0",
"react-dom": "^15.4.2",
"react-highlight": "^0.9.0",
"react-hot-loader": "^1.3.1",
"react-marked-markdown": "^1.4.2",
"react-redux": "^5.0.1",
"react-simplemde-editor": "^3.6.8",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"redux-watch": "^1.1.1",
"semantic-ui-css": "^2.2.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-css-modules-transform": "^1.1.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-3": "^6.22.0",
"bower-webpack-plugin": "^0.1.9",
"css-loader": "^0.26.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"jsx-control-statements": "^3.1.5",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"react-codemirror": "^0.3.0",
"react-hot-loader": "^1.3.1",
"react-scripts": "^0.8.4",
"static-loader": "^0.1.8",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.7.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.16.1"
}
}