-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "react-swapi-hooks",
"description": "A small React app using the upcoming feature Hooks and the StarWars API.",
"version": "0.1.0",
"author": "Alessio Minichiello <minichielloalessio@gmail.com>",
"license": "ISC",
"homepage": "http://lssmn.github.com/react-swapi-hooks",
"repository": {
"type": "git",
"url": "https://github.com/lssmn/react-swapi-hooks.git"
},
"scripts": {
"flow": "flow",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"polished": "^2.3.1",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-scripts": "2.1.1",
"styled-components": "^4.1.2"
},
"devDependencies": {
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react-hooks": "^0.0.0",
"flow-bin": "^0.89.0",
"gh-pages": "^2.0.1",
"prettier": "1.15.3"
}
}