forked from adaltas/node-csv-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "csv-docs",
"description": "Node.js CSV official documentation website",
"version": "1.0.0",
"author": "David Worms <[email protected]>",
"dependencies": {
"csv": "^5.3.2",
"gatsby": "^2.24.37",
"gatsby-plugin-catch-links": "^2.3.11",
"gatsby-plugin-glamor": "^2.3.10",
"gatsby-plugin-google-analytics": "^2.3.13",
"gatsby-plugin-manifest": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-react-helmet": "next",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-typography": "^2.5.10",
"gatsby-remark-autolink-headers": "^2.3.11",
"gatsby-remark-prismjs": "^3.5.10",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-transformer-remark": "^2.8.28",
"glamor": "^2.20.40",
"npm-check-updates": "^7.0.4",
"prismjs": "^1.21.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"react-modal": "^3.11.2",
"react-syntax-highlighter": "^13.3.1",
"react-tooltip": "^4.2.8",
"react-typography": "^0.16.19",
"typeface-fira-mono": "^0.0.72",
"typeface-open-sans": "^0.0.75",
"typography": "^0.16.19",
"typography-theme-grand-view": "^0.16.19"
},
"keywords": [
"csv, node.js, parser, stringifier, website, gatsby"
],
"homepage": "https://csv.js.org/",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"serve": "gatsby build && gatsby serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaltas/node-csv-docs"
}
}