-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "react-pokedex",
"version": "0.0.1",
"author": "Juan Delgadillo <[email protected]> (https://github.com/JuanDelgadillo)",
"description": "A Pokedex built in React",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/JuanDelgadillo/react-pokedex"
},
"keywords": [
"Pokemon",
"Pokedex",
"React"
],
"bugs": {
"url": "https://github.com/JuanDelgadillo/react-pokedex/issues"
},
"scripts": {
"start": "webpack-dev-server",
"production": "webpack -p"
},
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.20.0",
"babel-preset-stage-3": "^6.17.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"html-webpack-plugin": "^2.24.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-livereload-plugin": "^0.9.0"
}
}