-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.33 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dockering",
"version": "2.0.0",
"description": "Just another WordPress site with Docker! 🐘 ",
"main": "index.js",
"author": "Fernando Moreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/onedevstudio/dockering/issues"
},
"homepage": "https://github.com/onedevstudio/dockering#readme",
"scripts": {
"dev": "npm run development",
"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": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"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",
"pretest": "npm run lint",
"lint": "eslint .",
"test": "echo \"No has test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/onedevstudio/dockering.git"
},
"keywords": [
"docker",
"wordpress",
"gulp"
],
"dependencies": {
"@fancyapps/fancybox": "^3.5.6",
"anchor-js": "^4.1.1",
"axios": "^0.18.0",
"bootstrap": "^4.2.1",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"lozad": "^1.7.0",
"moment": "^2.23.0",
"popper.js": "^1.14.6",
"vue": "^2.5.21"
},
"devDependencies": {
"autoprefixer": "^9.4.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"cross-env": "^5.2.0",
"eslint": "^5.11.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"laravel-mix": "^4.0.12",
"resolve-url-loader": "2.3.1",
"sass": "^1.15.2",
"sass-loader": "7.*",
"vue-template-compiler": "^2.5.21"
}
}