-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.17 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-hooks-context-demo",
"version": "1.0.0",
"description": "A simple project demonstration on how to manage application state using React Hooks and the Context API",
"main": "src/index.html",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"watch": "parcel watch src/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandiqa/react-hooks-context-demo.git"
},
"keywords": [
"React",
"Hooks",
"Context API"
],
"author": "Michael Wanyoike",
"license": "MIT",
"bugs": {
"url": "https://github.com/brandiqa/react-hooks-context-demo/issues"
},
"homepage": "https://github.com/brandiqa/react-hooks-context-demo#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"parcel-bundler": "^1.12.3"
},
"dependencies": {
"constate": "^1.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.86.0"
},
"browserslist": [
"last 1 Chrome version"
]
}