forked from ramanan12345/WP-base-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.01 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "digia-WP-base",
"version": "0.5.0",
"description": "Digia WP-Base",
"author": "Wille <[email protected]>",
"private": true,
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"homepage": "https://github.com/digiaonline/WP-base-theme#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/digiaonline/WP-base-theme.git"
},
"bugs": {
"url": "https://github.com/digiaonline/WP-base-theme/issues"
},
"config": {
"port": 3000,
"proxyUrl": "http://sandbox.dev",
"entries": {
"main": [
"./assets/scripts/main.js",
"./assets/styles/main.scss"
],
"customizer": [
"./assets/scripts/customizer.js"
],
"admin": [
"./assets/admin/backend.js",
"./assets/admin/backend.scss"
]
}
},
"scripts": {
"start": "webpack-dev-server --mode development --config assets/webpack/development.js --colors --progress --hot --inline",
"prod": "webpack --mode production --config assets/webpack/production.js --progress",
"config": "node ./.bin/config",
"test": "eslint assets/scripts"
},
"engines": {
"node": ">= 6.9"
},
"dependencies": {
"bootstrap": "^4.1.3",
"fastclick": "^1.0.6",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"jquery": "1.12.4 - 3",
"mini-css-extract-plugin": "^0.4.1",
"popper.js": "^1.14.4"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^2.2.2",
"cache-loader": "^1.0.3",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"copy-webpack-plugin": "^4.5.2",
"css-hot-loader": "^1.3.1",
"css-loader": "^1.0.0",
"eslint": "^3.9.1",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "^1.5.5",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"exports-loader": "^0.6.3",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^1.1.11",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^1.2.1",
"imports-loader": "^0.7.1",
"install": "^0.8.2",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss-loader": "^1.1.0",
"prompt": "^1.0.0",
"qs": "^6.3.0",
"replace-in-file": "^2.5.3",
"require-dir": "^0.3.1",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^4.16.5",
"webpack-cleanup-plugin": "^0.4.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^0.15.0"
}
}