-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.34 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
{
"name": "orbital-2017",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">= 7.6.0"
},
"scripts": {
"start": "npm run develop",
"develop": "concurrently --kill-others \"nodemon --exec babel-node index.js\" \"redis-server\"",
"production": "babel-node index.js",
"build": "webpack --config ./webpack.production.config.js --progress --profile --colors",
"lint": "eslint --fix ."
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bulma": "^0.4.3",
"concurrently": "^3.4.0",
"cookie": "^0.3.1",
"favicons-webpack-plugin": "^0.0.7",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^2.28.0",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-favicon": "^2.0.0",
"koa-logger": "^3.0.0",
"koa-multer": "^1.0.1",
"koa-passport": "^3.0.0",
"koa-redis": "^3.0.0",
"koa-route": "^3.2.0",
"koa-router": "^7.1.1",
"koa-s3-sign-upload": "^1.0.4",
"koa-session": "^5.1.0",
"koa-static-server": "^1.2.1",
"koa-views": "^6.0.2",
"koa-webpack": "^0.5.1",
"lodash": "^4.17.4",
"markdown-it": "^8.3.2",
"passport-google-oauth2": "^0.1.6",
"prop-types": "^15.5.10",
"pug": "^2.0.0-rc.2",
"randomcolor": "^0.5.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-dropzone": "^3.13.1",
"react-dropzone-s3-uploader": "^1.0.0",
"react-hot-loader": "^1.3.1",
"react-joyride": "^1.10.1",
"react-pdf": "^1.6.1",
"react-redux": "^5.0.5",
"react-rnd": "^5.0.7",
"react-router-dom": "^4.1.1",
"redis": "^2.7.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"request": "^2.81.0",
"socket.io": "^2.0.1",
"socket.io-client": "^2.0.1",
"superagent": "^3.5.2"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}