-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.58 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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <[email protected]>",
"types": "index.d.ts",
"engines": {
"node": "14.x",
"npm": "8.x"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@reduxjs/toolkit": "^1.7.1",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.5",
"autoprefixer": "^10.4.0",
"dotenv": "^10.0.0",
"framer-motion": "^5.4.5",
"gatsby": "^4.3.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-gatsby-cloud": "^4.3.0",
"gatsby-plugin-google-gtag": "^4.4.0",
"gatsby-plugin-image": "^2.3.0",
"gatsby-plugin-layout": "^3.4.0",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-mdx": "^3.9.0",
"gatsby-plugin-offline": "^5.3.0",
"gatsby-plugin-postcss": "^5.3.0",
"gatsby-plugin-react-helmet": "^5.4.0",
"gatsby-plugin-sass": "^5.3.0",
"gatsby-plugin-sharp": "^4.4.0",
"gatsby-source-contentful": "^7.2.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-transformer-remark": "^5.7.0",
"gatsby-transformer-sharp": "^4.4.0",
"postcss": "^8.4.4",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"sass": "^1.45.0",
"tailwindcss": "^3.0.1"
},
"devDependencies": {
"prettier": "^2.4.1",
"start-server-and-test": "^1.14.0"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "tailwindcss -i ./src/style/index.css -o ./src/style/tailwind.css --minify && gatsby build",
"deploy:preview": "git add . && git commit -m \"preview of the modifications\" && git push -u origin preview",
"deploy:prod": "git add . && git commit -m \"continuous integration strategy\" && git push -u origin main",
"watch:tail": "tailwindcss -i ./src/style/index.css -o ./src/style/tailwind.css --watch",
"dev": "gatsby develop -H 0.0.0.0",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"cy:run": "cypress run",
"develop": "gatsby develop",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}