forked from vse-volod/gatsby-pizza-delivery
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.47 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
{
"name": "gatsby-starter-pizza",
"private": true,
"description": "Example of pizza delivery site implemented using GatsbyJS",
"version": "0.1.0",
"author": "GatsbyTemplates.io",
"bugs": {
"url": "https://github.com/gatsbytemplates/gatsby-starter-pizza/issues"
},
"dependencies": {
"@babel/core": "^7.13.14",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"axios": "^0.21.1",
"babel-plugin-macros": "^3.0.1",
"framer-motion": "^4.1.2",
"gatsby": "^3.2.0",
"gatsby-image": "^3.2.0",
"gatsby-plugin-anchor-links": "^1.1.1",
"gatsby-plugin-emotion": "^6.2.0",
"gatsby-plugin-env-variables": "^1.0.2",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-mdx": "^2.2.0",
"gatsby-plugin-offline": "^4.2.0",
"gatsby-plugin-preload-fonts": "^2.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-sharp": "^3.2.0",
"gatsby-remark-copy-linked-files": "^3.2.0",
"gatsby-remark-images": "^4.2.0",
"gatsby-remark-smartypants": "^3.2.0",
"gatsby-source-filesystem": "^3.2.0",
"gatsby-transformer-remark": "^3.2.0",
"gatsby-transformer-sharp": "^3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.0.0",
"react-hook-form": "^5.7.2",
"twin.macro": "^2.3.2",
"use-cart": "^1.1.0"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mdx": "^1.7.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"tailwindcss": "^2.0.3",
"twin.macro": "^2.3.0"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"homepage": "https://github.com/gatsbytemplates/gatsby-starter-pizza#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbytemplates/gatsby-starter-pizza.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"preload-fonts": "gatsby-preload-fonts",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
}
}