-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.75 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
{
"name": "wordpress-development",
"version": "1.0.0",
"author": "Hiroki Omote",
"license": "GPL-2.0-or-later",
"dependencies": {
"argv": "^0.0.2",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.23.6",
"cpx": "^1.5.0",
"css-mqpacker": "^7.0.0",
"csswring": "^7.0.0",
"dotenv": "^8.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.7.1",
"fast-glob": "^2.2.6",
"fs-extra": "^7.0.1",
"jquery": "^3.5.0",
"laravel-mix": "^2.1.7",
"laravel-mix-eslint": "^0.1.1",
"npm-run-all": "^4.1.3",
"postcss-custom-media": "^7.0.8",
"postcss-sorting": "^4.0.1",
"reset-css": "^4.0.1",
"stylelint": "^9.8.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"stylelint-webpack-plugin": "^0.10.5"
},
"scripts": {
"mix:dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev:watch": "NODE_ENV=watch webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"mix:production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"browser:watch": "browser-sync start --config bs-config.js",
"dev": "npm-run-all -p *:dev",
"watch": "npm-run-all -p *:watch",
"build": "npm-run-all *:production",
"login:wordmove": "docker exec -it wordpress_test_wordmove /bin/bash",
"clean": "rimraf ./public",
"prestart": "docker-compose up -d",
"start": "npm run watch"
}
}