-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "wp-post-expiration",
"description": "A WordPress module that makes it easy to add support for post expiration to any post type.",
"author": "Micah Wood <micah@wpscholar.com>",
"license": "GPL-2.0+",
"private": true,
"scripts": {
"build": "yarn run build:dev && yarn run build:prod",
"build:dev": "webpack",
"build:prod": "cross-env NODE_ENV=production webpack -p",
"watch": "yarn run watch:dev",
"watch:dev": "webpack --watch",
"watch:prod": "yarn run build:prod -- --watch"
},
"dependencies": {
"autoprefixer": "^7.1.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"css-mqpacker": "^6.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"flatpickr": "^3.0.7",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"sass-mq": "^3.3.2",
"style-loader": "^0.18.2",
"webpack": "^3.6.0"
}
}