forked from dscnitrourkela/project-raisin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.4 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
106
107
108
109
110
111
112
113
{
"name": "innovision-2023",
"private": true,
"description": "Official repository for Innovision 2023",
"version": "1.2.0",
"license": "MIT",
"main": "src/pages/index.js",
"keywords": [
"innovision",
"website",
"react",
"gatsby",
"tailwind",
"dscnitrourkela",
"nitrourkela"
],
"repository": {
"type": "git",
"url": "https://github.com/dscnitrourkela/project-raisin.git"
},
"bugs": {
"url": "https://github.com/dscnitrourkela/project-raisin.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": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reach/router": "^1.3.4",
"@tanstack/react-query": "^4.35.3",
"add": "^2.0.6",
"axios": "^1.5.0",
"babel-plugin-styled-components": "^2.1.4",
"calendar-link": "^2.5.1",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"firebase": "^10.4.0",
"gatsby": "^5.12.4",
"gatsby-plugin-firebase": "^0.2.0-beta.4",
"gatsby-plugin-gatsby-cloud": "^5.12.1",
"gatsby-plugin-google-analytics": "^5.12.0",
"gatsby-plugin-google-gtag": "^5.12.0",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-offline": "^6.12.0",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-plugin-sitemap": "^6.12.0",
"gatsby-plugin-styled-components": "^6.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-lottie": "^1.2.3",
"react-modal": "^3.16.1",
"react-responsive-modal": "^6.4.2",
"react-slick": "^0.29.0",
"react-toastify": "^9.1.3",
"react-typeform-embed": "^1.0.3",
"slick-carousel": "^1.8.1",
"smooth-scroll": "^16.1.3",
"stream-chat": "^8.12.0",
"stream-chat-react": "^10.10.1",
"styled-components": "^6.0.8",
"tailwindcss": "^3.3.3",
"tailwindcss-pseudo": "^1.0.3",
"twin.macro": "^3.4.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"autoprefixer": "^10.4.15",
"eslint": "^8.49.0",
"eslint-config": "^0.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-postcss": "^6.12.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.30",
"prettier": "^3.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss,json}": [
"prettier --write"
]
}
}