-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.33 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.33 KB
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
{
"name": "Codivox",
"private": true,
"description": "",
"version": "0.1.0",
"author": "Codivox",
"dependencies": {
"@theme-ui/preset-tailwind": "^0.3.0",
"@theme-ui/presets": "^0.3.0",
"@types/react": "^16.9.43",
"@types/react-burger-menu": "^2.6.1",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/theme-ui": "^0.3.5",
"@vx/responsive": "0.0.199",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"gatsby": "^2.24.47",
"gatsby-image": "^2.4.13",
"gatsby-plugin-google-analytics": "^2.3.13",
"gatsby-plugin-layout": "^1.3.10",
"gatsby-plugin-manifest": "^2.4.18",
"gatsby-plugin-offline": "^3.2.18",
"gatsby-plugin-react-helmet": "^3.3.6",
"gatsby-plugin-sharp": "^2.6.27",
"gatsby-plugin-theme-ui": "^0.3.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.3.19",
"gatsby-source-graphql": "^2.7.3",
"gatsby-transformer-sharp": "^2.5.11",
"gsap": "^3.5.0",
"helmet": "^4.1.0",
"netlify-lambda": "^2.0.1",
"node-fetch": "^2.6.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-burger-menu": "^2.7.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.4.1",
"react-modal": "^3.11.2",
"serverless-http": "^2.5.0",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"eslint-config-codivox": "0.0.2",
"http-proxy-middleware": "^1.0.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "tsc --noEmit && eslint src/**/*.tsx",
"lambda-serve": "netlify-lambda serve functions"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}