-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.68 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
44
45
46
{
"name": "docxy",
"description": "Docxy is a React based open-source documentation site generator. Build beautiful, blazing fast documentation sites for your projects with just markdown.",
"version": "2.0.0",
"private": true,
"author": "Sankarsan Kampa",
"license": "MPL-2.0",
"repository": "https://github.com/docxy/docgen",
"scripts": {
"build": "./node_modules/.bin/gatsby build",
"clean": "./node_modules/.bin/gatsby clean",
"start": "./node_modules/.bin/gatsby develop",
"lint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"gatsby": "^2.24.74",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-glamor": "^2.3.13",
"gatsby-plugin-local-search": "^2.0.0",
"gatsby-plugin-react-helmet": "^3.3.14",
"gatsby-plugin-typescript": "^2.4.21",
"gatsby-remark-prismjs": "^3.5.16",
"gatsby-source-filesystem": "^2.3.34",
"gatsby-transformer-remark": "^2.8.38",
"gatsby-transformer-yaml": "^2.4.14",
"glamor": "^2.20.40",
"prismjs": "^1.22.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-use-flexsearch": "^0.1.1",
"typescript": "^4.0.3",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"gh-pages": "^3.1.0"
}
}