-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 900 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "deployer",
"private": true,
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn dev --watch",
"watch-poll": "yarn dev --watch --watch-poll",
"hot": "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": "NODE_ENV=production node_modules/webpack/bin/webpack.js --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"dependencies": {
"axios": "^0.15.3",
"clipboard-polyfill": "^2.4.7",
"dialog-polyfill": "^0.4.3",
"dotenv": "^6.1.0",
"ioredis": "^2.2.0",
"material-design-lite": "^1.1.3",
"socket.io": "^1.4.8"
},
"devDependencies": {
"laravel-mix": "^2.1.14"
}
}