-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
117 lines (117 loc) · 3.53 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "oice-web",
"version": "5.0.0",
"description": "oice Frontend",
"main": "/src/index.js",
"scripts": {
"start": "node ./index.js",
"server": "NODE_ENV=production npm start",
"build": "NODE_ENV=production webpack --progress",
"build:slient": "NODE_ENV=production webpack",
"forever": "NODE_ENV=production forever start ./index.js",
"stop": "forever stop ./index.js",
"deploy": "npm run build && npm run server",
"lint": "eslint src index.js src/server.jsx src/IndexHTML.jsx --ext .jsx,.js"
},
"authors": [
"Andrew Chung",
"David Ng",
"Miles Wong",
"Vincent Su",
"William Chong"
],
"license": "GPL-3.0",
"dependencies": {
"async": "^3.2.4",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"express": "^4.16.3",
"firebase": "^8.10.1",
"history": "^3.0.0",
"i18next": "^8.4.3",
"i18next-browser-languagedetector": "^2.0.0",
"i18next-express-middleware": "^1.0.5",
"i18next-localstorage-cache": "^0.3.0",
"immutability-helper": "^2.2.0",
"lodash": "^4.17.10",
"material-ui": "^0.20.2",
"moment": "^2.21.0",
"platform": "^1.3.4",
"prop-types": "^15.5.10",
"qrcode.react": "^0.7.1",
"query-string": "^5.0.1",
"react": "^16.0.0",
"react-color": "^2.3.4",
"react-cropper": "^1.3.0",
"react-dnd": "^2.4.0",
"react-dnd-html5-backend": "^2.4.1",
"react-dnd-touch-backend": "^0.3.10",
"react-dom": "^16.0.0",
"react-event-listener": "^0.4.0",
"react-i18next": "3.1.2",
"react-lazyload": "2.3.0",
"react-measure": "^2.0.0",
"react-motion": "^0.5.0",
"react-redux": "^5.0.4",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.5",
"react-scroll": "1.5.4",
"react-spark-scroll-rekapi": "^4.0.0",
"react-stickynode": "^1.4.0",
"react-tap-event-plugin": "^2.0.1",
"react-tooltip": "^3.3.0",
"react-virtualized": "^9.19.1",
"redux": "^3.6.0",
"redux-actions": "^2.0.3",
"redux-auth-wrapper": "^1.1.0",
"redux-logger": "2.10.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"scroll-into-view": "^1.7.5",
"socket.io-client": "^4.7.2",
"sprintf-js": "^1.0.3",
"superagent": "^3.8.3",
"superagent-jsonp": "^0.1.1",
"underscore": "^1.13.4",
"uuid": "^2.0.3",
"xml": "^1.0.1"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"autoprefixer": "^7.0.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"file-loader": "^0.11.1",
"html-loader": "^0.5.5",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^6.0.1",
"postcss-loader": "^2.1.5",
"react-hot-loader": "^3.0.0",
"remark": "^13.0.0",
"remark-html": "^13.0.2",
"remark-loader": "^2.0.0",
"sass-loader": "^10.0.0",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.47.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.18.0"
}
}