-
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.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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": "pokedex-react",
"version": "1.0.0",
"description": "This is a project to create a pokedex app in ReactJS",
"main": "webpack.config.js",
"scripts": {
"now-build": "npm run build:prod",
"build:dev": "webpack-dev-server --config ./webpack.dev.config.js",
"build": "webpack",
"build:local": "webpack --env.NODE_ENV=local",
"build:prod": "webpack -p --env.NODE_ENV=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesuskata/pokedex-react.git"
},
"keywords": [
"react"
],
"author": "jesuskata",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"clean-webpack-plugin": "0.1.17",
"css-loader": "3.2.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.5",
"style-loader": "0.19.0",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-cli": "3.3.7",
"webpack-dev-server": "2.11.5"
},
"bugs": {
"url": "https://github.com/jesuskata/pokedex-react/issues"
},
"homepage": "https://github.com/jesuskata/pokedex-react#readme",
"dependencies": {
"axios": "^0.18.1",
"react": "^16.3.2",
"react-dom": "^16.3.2"
}
}