-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 860 Bytes
/
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
{
"name": "wp-plugin-reviews-react",
"version": "1.0.0",
"description": "A react app which shows a list of plugin reviews from wordpress.org",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"create": "webpack"
},
"keywords": [
"react",
"wordpress",
"plugin"
],
"babel": {
"presets": [
"env",
"react"
]
},
"author": "Muhammad Adnan",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.16.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"html-webpack-plugin": "^2.28.0",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}