-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.92 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
{
"name": "test-socketio",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"start": "node dist/app.js",
"serve": "node server",
"build:prod": "SET NODE_ENV=production&& webpack -p && babel server -d dist",
"build:dev": "SET NODE_ENV=development&& webpack --watch",
"lint": "eslint server/**/*.js client/**/*.js",
"debug": "npm-run-all --parallel build:dev serve",
"test": "nyc ava --timeout=60s",
"test:v": "ava -v --timeout=60s",
"test:watch": "ava -w -v --timeout=60s"
},
"keywords": [
"node",
"socketio",
"silly-chat"
],
"author": "Kiran",
"license": "ISC",
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"connect-gzip-static": "^1.0.0",
"express": "^4.13.3",
"fs": "^0.0.2",
"nodemailer": "^2.4.2",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.7.0",
"rivescript": "^1.13.0",
"socket.io": "^1.3.6"
},
"engines": {
"node": "6.2.1"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-react": "^6.11.1",
"compression-webpack-plugin": "^0.3.1",
"coveralls": "^2.11.15",
"css-loader": "^0.23.1",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-plugin-react": "^5.2.2",
"eslint-watch": "^2.1.13",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"ignore-styles": "^5.0.1",
"jquery": "^3.1.1",
"jsdom": "^9.8.3",
"nock": "^9.0.2",
"npm-run-all": "^2.3.0",
"nyc": "^10.0.0",
"proxyquire": "^1.7.10",
"react-addons-test-utils": "^15.4.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-livereload-plugin": "^0.8.2"
},
"ava": {
"require": [
"babel-register",
"ignore-styles"
],
"babel": {
"presets": [
"es2015",
"react"
]
}
}
}