-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.99 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
86
87
88
89
90
91
92
93
94
{
"name": "website",
"private": true,
"description": "KSS PC Club's Website",
"version": "0.1.0",
"author": "KSS PC Club <kss-pc-club>",
"license": "MIT",
"keywords": [
"gatsby",
"kss-pc-club"
],
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@types/react-slick": "^0.23.8",
"bootstrap": "^5.1.3",
"gatsby": "^4.16.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-advanced-sitemap": "^2.1.0",
"gatsby-plugin-catch-links": "^4.16.0",
"gatsby-plugin-emotion": "^7.16.0",
"gatsby-plugin-fontawesome-css": "^1.2.0",
"gatsby-plugin-image": "^2.16.1",
"gatsby-plugin-lodash": "^5.16.0",
"gatsby-plugin-manifest": "^4.16.0",
"gatsby-plugin-offline": "^5.16.0",
"gatsby-plugin-react-helmet": "^5.16.0",
"gatsby-plugin-robots-txt": "^1.7.1",
"gatsby-plugin-sass": "^5.16.0",
"gatsby-plugin-sharp": "^4.16.1",
"gatsby-plugin-typescript": "^4.16.0",
"gatsby-remark-autolink-headers": "^5.16.0",
"gatsby-remark-copy-linked-files": "^5.16.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^6.16.0",
"gatsby-remark-katex": "^6.16.0",
"gatsby-remark-prismjs": "^6.16.0",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-remark-smartypants": "^5.16.0",
"gatsby-source-filesystem": "^4.16.0",
"gatsby-transformer-json": "^4.16.0",
"gatsby-transformer-remark": "^5.16.0",
"gatsby-transformer-sharp": "^4.16.0",
"lodash": "^4.17.20",
"node-sass": "^7.0.1",
"prismjs": "^1.28.0",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-slick": "^0.29.0",
"ress": "^5.0.2",
"sass": "^1.52.3",
"slick-carousel": "^1.8.1",
"sweet-scroll": "^4.0.0",
"typescript": "^4.7.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "^17.0.41",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"gatsby-plugin-root-import": "^2.0.8",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "2.6.2"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop --host=localhost --port=8000 --open",
"start": "yarn develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"husky:prepare": "husky install"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
},
"repository": "https://github.com/kss-pc-club/website",
"bugs": {
"url": "https://github.com/kss-pc-club/website/issues"
}
}