-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "WebChat",
"version": "1.0.0",
"description": "",
"start": "node server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --module-bind 'js=babel' public/js/web-chat.js public/js/index.js public/js/chat_bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Volant/WebChat.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Volant/WebChat/issues"
},
"homepage": "https://github.com/Volant/WebChat",
"dependencies": {
"body-parser": "^1.15.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"express": "^4.13.4",
"ws": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-angular": "^1.0.0",
"eslint-plugin-react": "^4.3.0",
"webpack": "^1.12.14",
"ws": "^1.0.1"
}
}