-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "gatsby-starter-nova",
"description": "Nova is a gatsby starter made for quickly and easily launching SEO-friendly sites.",
"version": "1.0.0",
"private": true,
"author": "With Pulp <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withpulp/gatsby-starter-nova"
},
"bugs": {
"url": "https://github.com/withpulp/gatsby-starter-nova/issues"
},
"keywords": [
"gatsby",
"mdx",
"nova",
"purgecss",
"react",
"starter",
"tailwind",
"typescript",
"withpulp"
],
"scripts": {
"build": "gatsby build",
"build:prod": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"clean": "gatsby clean",
"clean:modules": "rm -rf .cache node_modules public",
"dev": "gatsby develop",
"dev:netlify": "netlify dev",
"fix": "prettier --write \"**/*.{js,jsx,json,md,mdx,mjs,ts,tsx,yml}\"",
"serve": "gatsby serve",
"start": "yarn dev",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"type-check": "tsc --noEmit"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet-async": "^1.0.7",
"react-hook-form": "^6.11.2"
},
"devDependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@types/classnames": "^2.2.11",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet-async": "^1.0.3",
"cssnano": "^4.1.10",
"gatsby": "^2.30.1",
"gatsby-image": "^2.9.0",
"gatsby-plugin-advanced-sitemap": "^1.5.6",
"gatsby-plugin-google-gtag": "^2.6.0",
"gatsby-plugin-manifest": "^2.10.0",
"gatsby-plugin-mdx": "^1.8.0",
"gatsby-plugin-next-seo": "^1.6.1",
"gatsby-plugin-offline": "^3.8.0",
"gatsby-plugin-postcss": "^3.5.0",
"gatsby-plugin-root-import": "^2.0.5",
"gatsby-plugin-sharp": "^2.12.0",
"gatsby-plugin-typescript": "^2.10.0",
"gatsby-remark-copy-linked-files": "^2.8.0",
"gatsby-remark-images": "^3.9.0",
"gatsby-remark-prismjs": "^3.11.0",
"gatsby-source-filesystem": "^2.9.0",
"gatsby-transformer-remark": "^2.14.0",
"gatsby-transformer-sharp": "^2.10.0",
"gatsby-transformer-yaml": "^2.9.0",
"lodash": "^4.17.20",
"postcss": "^8.1.7",
"postcss-import": "^13.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prismjs": "^1.23.0",
"remark-emoji": "^2.1.0",
"tailwindcss": "^2.0.2",
"typescript": "^4.1.3"
}
}