-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 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
46
{
"name": "wordpress_starter_plugin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shams-sadek1981/wordpress_plugin_starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shams-sadek1981/wordpress_plugin_starter/issues"
},
"homepage": "https://github.com/shams-sadek1981/wordpress_plugin_starter#readme",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^3.2.0",
"less-loader": "^5.0.0",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"webpack": "^4.41.6",
"webpack-cli": "^4.0.0-beta.3",
"webpack-livereload-plugin": "^2.3.0"
},
"dependencies": {
"antd": "^3.26.11",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
}
}