-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
66 lines (66 loc) · 2.15 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
59
60
61
62
63
64
65
66
{
"name": "csv-docs",
"description": "Node.js CSV official documentation website",
"version": "1.0.0",
"author": "David Worms <david@adaltas.com>",
"dependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"csv": "^6.3.6",
"gatsby": "^5.13.1",
"gatsby-plugin-catch-links": "^5.13.0",
"gatsby-plugin-emotion": "^8.13.0",
"gatsby-plugin-google-analytics": "^5.13.0",
"gatsby-plugin-manifest": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-plausible": "^0.0.7",
"gatsby-plugin-react-helmet": "next",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sitemap": "^6.13.0",
"gatsby-plugin-typography": "^5.13.0",
"gatsby-remark-autolink-headers": "^6.13.0",
"gatsby-remark-embed-snippet": "^8.13.0",
"gatsby-remark-prismjs": "^7.13.0",
"gatsby-source-filesystem": "^5.13.0",
"gatsby-transformer-remark": "^6.13.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.12.0",
"react-modal": "^3.16.1",
"react-syntax-highlighter": "^15.5.0",
"react-tooltip": "^5.25.1",
"react-typography": "^0.16.23",
"typeface-fira-mono": "^1.1.13",
"typeface-open-sans": "^1.1.13",
"typography": "^0.16.24",
"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",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public",
"develop": "npm run develop:csv && gatsby develop",
"develop:csv": "git submodule update --remote csv",
"format": "prettier --write 'src/**/*.js'",
"git": "git submodule update --remote csv",
"serve": "gatsby serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"gatsby-remark-snippet-url": "^0.2.1",
"gatsby-remark-snippet-url-prepare": "^0.2.1",
"prettier": "^3.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaltas/node-csv-docs"
}
}