-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.07 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
{
"name": "github-api",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build": "yarn prod",
"start": "serve ./dist --single",
"deploy": "yarn prod"
},
"devDependencies": {
"axios": "^0.19.2",
"html-webpack-plugin": "^3.2.0",
"laravel-mix": "^2.1.11",
"lodash": "^4.17.11",
"tailwindcss": "^0.6.5"
},
"dependencies": {
"laravel-mix-purgecss": "^2.2.3",
"moment": "^2.22.2",
"vue": "2.6.11",
"vue-js-modal": "^2.0.0-rc.3"
}
}