-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
31 lines (31 loc) · 898 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
30
31
{
"name": "reactjsgirls-docs",
"version": "1.0.0",
"description": "Docs for workshops",
"main": "index.js",
"repository": "https://github.com/ReactJSGirls/reactjsgirls-docs",
"author": "Sara Vieira",
"license": "MIT",
"scripts": {
"dev": "docz dev",
"build": "docz build && cp _redirects dist/_redirects",
"start": "serve -s dist",
"format": "prettier --write '**/*.{js,css,md}'",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"now-build": "yarn build"
},
"devDependencies": {
"all-contributors-cli": "^6.0.2",
"docz": "^0.13.7",
"docz-plugin-css": "^0.11.0",
"serve": "^10.0.0"
},
"dependencies": {
"docz-theme-default": "^0.13.7",
"prism-react-renderer": "^0.1.6",
"react-copy-to-clipboard": "^5.0.1",
"react-icons": "^3.5.0",
"recompose": "^0.30.0"
}
}