-
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) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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": "sc_chat",
"version": "1.0.0",
"description": "Basic MERNG Chat",
"main": "server.js",
"scripts": {
"clear": "rm -f server.js server.js.map dist",
"build-dev-server": "webpack --mode development --config webpack.server.config.js",
"server": "concurrently \"npm run build-dev-server -- -w\" \"nodemon server.js\"",
"build-dev-client": "webpack --mode development --config webpack.client.config.js",
"install": "npm install",
"client": "npm run build-dev-client -- -w",
"start": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "https://github.com/mm22dev/sc-chat.git"
},
"keywords": [
"chat",
"MERNG",
"Mongo",
"Express",
"React",
"Node",
"GraphQL"
],
"author": "mm22dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/mm22dev/sc-chat/issues"
},
"homepage": "https://github.com/mm22dev/sc-chat#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"concurrently": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.19.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"apollo-boost": "^0.4.4",
"apollo-server-express": "^2.9.7",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"get-urls": "^9.2.0",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.7",
"nodemailer": "^6.3.1",
"react": "^16.11.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.11.0",
"react-router-dom": "^5.1.2",
"semantic-ui-react": "^0.88.1",
"url-metadata": "^2.4.0",
"validator": "^11.1.0"
}
}