forked from rheinardkorf/webpack-wordpress-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "demo-plugin",
"version": "1.0.0",
"description": "A plugin to demonstrate Webpack with WordPress.",
"scripts": {
"start": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rheinardkorf/webpack-wordpress-demo.git"
},
"author": "Rheinard Korf",
"license": "MIT",
"bugs": {
"url": "https://github.com/rheinardkorf/webpack-wordpress-demo/issues"
},
"homepage": "https://github.com/rheinardkorf/webpack-wordpress-demo#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"browser-sync-webpack-plugin": "^1.2.0",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"webpack": "^3.5.5"
},
"dependencies": {
"browser-sync": "^2.18.13"
}
}