forked from gopangolin/wp-reactivate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "wp-reactivate",
"version": "0.8.0",
"description": "React boilerplate for WordPress plugins",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress --colors --watch",
"prod": "NODE_ENV=production webpack --progress --colors -p --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gopangolin/wp-reactivate.git"
},
"keywords": [
"wordpress",
"react",
"plugin",
"webpack"
],
"author": "Pangolin",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gopangolin/wp-reactivate/issues"
},
"homepage": "https://github.com/gopangolin/wp-reactivate#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"isomorphic-fetch": "^2.2.1",
"react": "^16.1.1",
"react-dom": "^16.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.11.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"webpack": "^3.8.1"
}
}