forked from ORKO06/project-oregano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.11 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "project-oregano",
"private": true,
"description": "Official repository for HackNITR 3.0",
"version": "0.1.0",
"license": "MIT",
"main": "src/pages/index.js",
"keywords": [
"hacknitr",
"hackathon",
"website",
"react",
"gatsby",
"tailwind",
"dscnitrourkela",
"nitrourkela"
],
"repository": {
"type": "git",
"url": "https://github.com/dscnitrourkela/project-oregano.git"
},
"bugs": {
"url": "https://github.com/dscnitrourkela/project-oregano.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "yarn run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prettier:fix": "npx prettier --write ./src",
"prettier:check": "npx prettier --check ./src",
"lint:fix": "npx eslint --fix 'src/**/*.{js,jsx,ts,tsx,json,md}'",
"lint:find": "npx eslint 'src/**/*.{js,jsx,ts,tsx,json,md}'",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@reach/router": "^1.3.4",
"calendar-link": "^2.1.1",
"dotenv": "^10.0.0",
"firebase": "^9.1.3",
"gatsby": "^4.25.7",
"gatsby-plugin-firebase": "^0.2.0-beta.4",
"gatsby-plugin-gatsby-cloud": "^3.2.0",
"gatsby-plugin-google-gtag": "^4.0.0",
"gatsby-plugin-image": "^1.10.1",
"gatsby-plugin-manifest": "^3.10.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-offline": "^4.10.0",
"gatsby-plugin-react-helmet": "^4.10.0",
"gatsby-plugin-robots-txt": "^1.6.8",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^4.6.0",
"gatsby-plugin-styled-components": "^4.10.0",
"gatsby-transformer-sharp": "^3.10.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-modal": "^3.14.3",
"react-responsive-modal": "^6.1.0",
"react-slick": "^0.28.1",
"react-typeform-embed": "^1.0.3",
"slick-carousel": "^1.8.1",
"smooth-scroll": "^16.1.3",
"stream-chat": "^4.2.0",
"stream-chat-react": "^6.10.0",
"styled-components": "^5.3.0",
"tailwindcss": "^2.2.2",
"tailwindcss-pseudo": "^1.0.3",
"twin.macro": "^2.5.0"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.29.0",
"eslint-config": "^0.3.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-postcss": "^4.7.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"postcss": "^8.3.5",
"prettier": "^2.3.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss,json}": [
"prettier --write"
]
}
}