forked from CyrexEnterprise/node-rethinkdb-echo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "node-rethinkdb-echo",
"description": "Pretty simple Node.js application to demonstrate the RethinkDB change feeds functionality.",
"version": "0.2.0",
"private": true,
"engines": {
"node": ">=6.10"
},
"scripts": {
"start": "node bin/index.js",
"test": "mocha test/*",
"chat": "react-scripts start",
"build": "react-scripts build",
"test-chat": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"production": "NODE_ENV=production node bin/index.js"
},
"dependencies": {
"body-parser": "~1.15.2",
"config": "^1.24.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"debug": "~2.2.0",
"ejs": "~2.5.2",
"express": "~4.14.0",
"express-winston": "^2.1.2",
"material-ui": "^1.0.0-beta.35",
"material-ui-icons": "^1.0.0-beta.17",
"react": "^16.2.0",
"react-chat-elements": "^0.8.2",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1",
"serve-favicon": "~2.3.0",
"socket.io": "^1.7.2",
"socket.io-react": "^1.2.0",
"sonic-async": "^0.5.11",
"thinky": "^2.3.8",
"winston": "^2.3.0"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-semistandard": "^12.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.2.0",
"should": "^11.1.2"
}
}