This repository was archived by the owner on Aug 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "wordpress-starbase",
"version": "2.3.0",
"author": "Brian Staruk <brian@staruk.me>",
"contributors": [
{
"name": "Brian Staruk",
"email": "brian@staruk.me",
"url": "https://brian.staruk.me"
}
],
"description": "wordpress dev theme w/ webpack 3, babel (es6), eslint, postcss, cssnext, stylelint & more",
"homepage": "https://github.com/bstaruk/wordpress-starbase",
"repository": {
"type": "git",
"url": "https://github.com/bstaruk/wordpress-starbase.git"
},
"bugs": {
"url": "https://github.com/bstaruk/wordpress-starbase/issues",
"email": "brian@staruk.me"
},
"engines": {
"node": ">=8.9"
},
"main": "index.js",
"scripts": {
"build": "webpack -p --config ./webpack/webpack.config.prod.js",
"watch": "webpack -p --config ./webpack/webpack.config.prod.watch.js"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"caniuse-lite": "^1.0.30000783",
"css-loader": "^0.28.7",
"css-mqpacker": "^6.0.1",
"cssnano": "^3.10.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"node-sass": "^4.7.2",
"postcss": "^6.0.14",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.9",
"postcss-nested": "^3.0.0",
"postcss-remove-root": "0.0.2",
"postcss-reporter": "^5.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"es6-promise": "^4.1.1",
"whatwg-fetch": "^2.0.3"
}
}