-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "webpack-es6-react-usage",
"version": "1.0.0",
"description": "Development Case of the Reactjs library and Webpack module bundler usage.",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --color --progress --open",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iGerley/webpack-es6-react-usage.git"
},
"keywords": [
"webpack",
"ecmascript2015",
"es6",
"react"
],
"author": "Gerley Adriano <gerleyadrianomiranda@gmail.com>",
"private": true,
"license": "MIT",
"bugs": {
"url": "https://github.com/iGerley/webpack-es6-react-usage/issues"
},
"homepage": "https://github.com/iGerley/webpack-es6-react-usage#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {},
"optionalDependencies": {
"fsevents": "*"
},
"devEngines": {
"node": "8.x || 9.x"
}
}