-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
29 lines (29 loc) · 945 Bytes
/
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
{
"name": "hooks-cheatsheet",
"version": "1.0.0",
"description": "Cheatsheet for React Hooks",
"main": "index.js",
"dependencies": {
"polished": "^3.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-element-to-jsx-string": "^14.0.2",
"react-live": "1.10.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"docz": "1.0.0-rc.8",
"docz-theme-default": "1.0.0-rc.8",
"eslint": "^5.16.0",
"prettier": "^1.17.0"
},
"scripts": {
"start": "docz dev",
"build": "docz build && cp .docz/dist/index.html .docz/dist/200.html",
"build:deploy": "yarn run build && npx surge .docz/dist --domain https://react-hooks-cheatsheet.com",
"deploy": "npx surge .docz/dist --domain https://react-hooks-cheatsheet.com",
"test": "npm test"
},
"author": "Ohans Emmanuel",
"license": "ISC"
}