-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.59 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "blockjudge",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/amijkko/BlockJudge"
},
"homepage": "http://blockjudge.com/",
"main": "./bin/server",
"scripts": {
"start": "npm install && npm run dev",
"clean": "rimraf ./build",
"dev": "nodemon",
"build": "npm run clean && cross-env DEBUG=app:* NODE_ENV=production node ./bin/compile"
},
"engines": {
"node": "=7.10.0",
"npm": ">=4.2.0"
},
"dependencies": {
"@eagle/app-config": "git+https://github.com/Graf009/app-config.git",
"autosize": "^3.0.20",
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"extensible-runtime": "^4.0.1",
"lodash": "^4.17.2",
"moment": "^2.18.1",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-css-modules": "^4.1.0",
"react-datepicker": "^0.48.0",
"react-dom": "^15.4.0",
"react-immutable-proptypes": "^2.1.0",
"react-portal": "^3.1.0",
"react-redux": "^5.0.2",
"react-responsive": "^1.3.0",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.7",
"redaction": "^4.0.3",
"redux": "^3.6.0",
"reflexbox": "^2.2.3",
"sanitize.css": "^5.0.0",
"valuelink": "^1.3.12",
"web3": "^0.19.1"
},
"devDependencies": {
"app-module-path": "^2.1.0",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-extensible-destructuring": "^4.0.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-react-intl": "^2.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.24.1",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"debug": "^2.2.0",
"directory-named-webpack-plugin": "^2.1.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"progress-bar-webpack-plugin": "^1.9.0",
"require-dir": "^0.3.1",
"rimraf": "^2.6.1",
"sass-loader": "^5.0.1",
"sass-resources-loader": "^1.1.0",
"style-loader": "^0.13.1",
"uglify-js": "^2.8.22",
"uglifyjs-webpack-plugin": "^0.4.3",
"url-loader": "^0.5.7",
"webpack": "^2.6.1",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.13.2"
}
}