-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "crown-website",
"private": true,
"description": "Crown Engine website",
"version": "1.3.0",
"author": "Alessio Bianchetti <[email protected]>",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby clean && gatsby build && echo 'www.crownengine.org' > ./public/CNAME && gh-pages -d public",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@types/react-helmet": "^6.1.11",
"gatsby": "^5.14.1",
"gatsby-plugin-google-gtag": "^5.14.0",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-postcss": "^6.14.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-icons": "^5.4.0"
},
"devDependencies": {
"ajv": "^8.17.1",
"gh-pages": "^6.2.0",
"html-loader": "^5.1.0",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17"
},
"overrides": {
"[email protected]": {
"react": "^18.2.0"
}
},
"keywords": [
"gatsby"
],
"repository": {
"type": "git",
"url": "https://github.com/crownengine/crown-website"
},
"bugs": {
"url": "https://github.com/crownengine/crown-website/issues"
}
}