-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "chatty-client",
"version": "1.0.0",
"description": "Realtime chat web app client",
"scripts": {
"lint": "eslint --ext .jsx,.js src",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mstop4/chatty-client.git"
},
"keywords": [
"chatty"
],
"author": "Jonathan Lam <mstop4@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mstop4/chatty-client/issues"
},
"homepage": "https://github.com/mstop4/chatty-client",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"css-loader": "0.28.9",
"eslint": "4.18.0",
"eslint-plugin-react": "7.6.1",
"node-sass": "4.7.2",
"sass-loader": "6.0.6",
"sockjs-client": "^1.1.4",
"style-loader": "0.20.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"react": "16.2.0",
"react-dom": "^16.7.0",
"webpack-dotenv-plugin": "^2.0.2",
"ws": "^4.0.0"
}
}