-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 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
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
{
"name": "chat",
"version": "1.0.0",
"description": "Chat application",
"main": "./client/index.js",
"scripts": {
"start": "node ./server/server.js",
"start:client": "webpack-dev-server --mode development --config ./config/webpack.config.dev.js",
"build": "webpack --config ./config/webpack.config.prod.js --mode production",
"test": "jest",
"test:watch": "./node_modules/jest/bin/jest.js --watchAll",
"lint": "standard --global React PropTypes --verbose | snazzy",
"postinstall": "npm run build"
},
"engines": {
"node": "8.9.4",
"npm": "6.2.0"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/suchy/chat.git"
},
"author": "Mateusz Suchoń <kontakt@suchego.pl>",
"bugs": {
"url": "https://github.com/suchy/chat/issues"
},
"homepage": "https://github.com/suchy/chat#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"directory-named-webpack-plugin": "^4.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"node-sass": "^4.8.3",
"react-hot-loader": "^4.1.2",
"react-test-renderer": "^16.3.2",
"sass-loader": "^6.0.7",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"standard-loader": "^6.0.1",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"express": "^4.16.3",
"prop-types": "^15.6.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"uuid": "^3.3.2"
}
}