forked from yinxin630/fiora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.63 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
118
119
{
"name": "fiora",
"version": "0.0.1",
"description": "An interesting chat application power by socket.io, koa, mongodb and react",
"author": "碎碎酱 <[email protected]>",
"license": "MIT",
"scripts": {
"server": "./node_modules/.bin/cross-env NODE_ENV=development && nodemon server/main.js --config .nodemonrc",
"client": "node build/dev-server.js",
"build": "node build/build.js",
"lint": "./node_modules/.bin/eslint ./ --ext js,jsx --ignore-pattern .eslintignore --cache --fix"
},
"pre-commit": [
"lint"
],
"dependencies": {
"autobind-decorator": "^2.1.0",
"axios": "^0.18.0",
"bcrypt": "^2.0.0",
"bluebird": "^3.5.1",
"brace": "^0.11.1",
"chalk": "^2.3.2",
"command-line-args": "^5.0.2",
"immutable": "^3.8.2",
"jwt-simple": "^0.5.1",
"koa": "^2.5.0",
"koa-send": "^4.1.3",
"koa-socket": "^4.4.0",
"koa-static": "^4.0.2",
"mongoose": "^5.0.13",
"normalize.css": "^8.0.0",
"platform": "^1.3.5",
"prismjs": "^1.14.0",
"qiniu": "^7.1.3",
"qiniu-js": "^2.2.2",
"rc-dialog": "^7.1.3",
"rc-dropdown": "^2.1.1",
"rc-menu": "^6.2.9",
"rc-notification": "^3.0.1",
"rc-progress": "^2.2.5",
"rc-select": "^7.7.6",
"rc-tabs": "9.2.4",
"rc-tooltip": "^3.7.2",
"react": "^16.2.0",
"react-ace": "^5.10.0",
"react-color": "^2.14.1",
"react-copy-to-clipboard": "^5.0.1",
"react-cropper": "^1.0.1",
"react-dom": "^16.2.0",
"react-immutable-render-mixin": "^0.9.7",
"react-loading": "^2.0.2",
"react-radio-buttons": "^1.2.1",
"react-redux": "^5.0.7",
"react-switch": "^2.3.2",
"react-viewer": "^2.3.9",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"socket.io-client": "^2.1.0",
"xss": "^0.3.7"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-prismjs": "^1.0.2",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.2.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.1.3",
"function-bind": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.17.3",
"less": "^2.7.2",
"less-loader": "^4.1.0",
"less-plugin-autoprefix": "^1.5.1",
"nodemon": "^1.17.3",
"opn": "^4.0.2",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"ora": "^1.1.0",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.0",
"pxrem-loader": "^1.0.0",
"react-hot-loader": "^4.0.0",
"react-immutable-proptypes": "^2.1.0",
"react-transform-log-render": "^1.0.0",
"react-transform-style": "^1.0.4",
"redbox-react": "^1.3.4",
"rimraf": "^2.6.0",
"semver": "^5.3.0",
"style-loader": "^0.15.0",
"url-loader": "^0.5.7",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-middleware": "^3.1.2",
"webpack-hot-middleware": "^2.22.0",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.0.0"
}
}