-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.39 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
{
"name": "chatapp",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "npm run development",
"pm": "pm2 start --name 'chatapp' npm -- run start",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"core-util-is": "^1.0.2",
"debug": "~2.6.9",
"express": "~4.17.3",
"glob-all": "^3.3.1",
"http-errors": "~1.6.3",
"laravel-mix-purgecss": "^4.2.0",
"morgan": "~1.9.1",
"nodemon": "^1.19.4",
"pug": "^2.0.4",
"socket.io": "^2.5.0",
"tailwindcss": "^1.1.2",
"vue": "^2.6.10",
"vue-chat-scroll": "^1.3.6",
"vue2-transitions": "^0.3.0"
},
"devDependencies": {
"cross-env": "^6.0.3",
"laravel-mix": "^5.0.0",
"sass": "^1.23.0",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10"
}
}