-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.37 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.37 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
{
"name": "difflogo-ui",
"version": "0.0.1",
"description": "",
"main": "index.js",
"repository": "https://github.com/mgledi/DiffLogoUI",
"scripts": {
"clean": "rimraf ./files ./sessions",
"mocha": "mocha --require babel-register ./test/**/*.js",
"pretest": "eslint ./src/",
"test": "BABEL_ENV=coverage nyc --reporter=lcov --reporter=text npm run mocha",
"test-watch": "npm run mocha -- --watch --watch-extension js",
"prebuild": "rimraf ./dist",
"build": "NODE_ENV=production webpack --config webpack.config.js",
"postbuild": "sh ./build.sh"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"author": "Jörg Weber, Martin Nettling",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-session": "^1.14.1",
"fs-extra": "^1.0.0",
"line-reader": "^0.4.0",
"lodash": "^4.16.4",
"multer": "^1.2.0",
"rimraf": "^2.5.4",
"session-file-store": "^1.0.0",
"uuid": "^3.0.1",
"winston": "^2.3.0",
"yargs": "^6.5.0"
},
"devDependencies": {
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-istanbul": "^3.1.2",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"classnames": "^2.2.5",
"css-loader": "^0.26.1",
"eslint": "^3.12.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^6.8.0",
"fetch-mock": "^5.8.0",
"flexboxgrid": "^6.3.1",
"html-webpack-plugin": "^2.22.0",
"isomorphic-fetch": "^2.2.1",
"material-ui": "^0.16.5",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"nyc": "^10.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-dropzone": "^3.7.3",
"react-flexbox-grid": "^0.10.2",
"react-ga": "^2.1.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.0",
"redux-mock-store": "^1.2.1",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2"
}
}