-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "pokedex",
"version": "0.1.0",
"private": true,
"homepage": "http://paulojbleitao.github.io/pokedex/",
"dependencies": {
"axios": "^0.18.1",
"bootstrap": "^4.0.0",
"gh-pages": "^1.1.0",
"jquery": "^3.3.1",
"json-loader": "^0.5.7",
"popper.js": "^1.14.3",
"react": "^16.3.1",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.3.1",
"react-scripts": "1.1.4",
"reactstrap": "^6.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"lint": "eslint src",
"fix": "eslint src --fix"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.80.0"
}
}