-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "node-text-chat",
"version": "1.0.0",
"description": "Real-time Node.js text chat",
"main": "server.js",
"scripts": {
"build": "rimraf ./dist && babel ./src -d ./dist",
"dev": "nodemon -w src/server.js --exec \"babel-node src/server.js\"",
"watch": "webpack --watch --mode development --hot",
"prod": "webpack --mode production --progress",
"prestart": "npm run -s build",
"start": "nodemon dist/server.js",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elszczepano/node-text-chat.git"
},
"author": "Dominik Szczepaniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/elszczepano/node-text-chat/issues"
},
"homepage": "https://github.com/elszczepano/node-text-chat#readme",
"devDependencies": {
"axios-mock-adapter": "^1.17.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.16.2",
"mongoose": "^5.6.5",
"nodemon": "^1.19.1",
"pug": "^2.0.4",
"socket.io": "^2.2.0",
"urlencoded-parser": "^1.0.0",
"webpack": "^4.36.1"
}
}