-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
100 lines (100 loc) · 2.73 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
{
"name": "innovision-2023",
"private": true,
"description": "Official repository for Innovision 2023",
"version": "1.3.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": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint \"src/**/*.{js,jsx}\" --fix",
"prepare": "husky install",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,jsx,css,scss,md}\" --ignore-path .gitignore",
"prettier:check": "prettier --check \"./**/*.{ts,tsx,js,jsx,css,scss,md}\" --ignore-path .gitignore",
"prettier:fix": "prettier --write \"./**/*.{ts,tsx,js,jsx,css,scss,md}\" --ignore-pattern node_modules/"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@babel/core": "^7.25.2",
"@nextui-org/react": "^2.4.8",
"@react-three/drei": "^9.112.1",
"@react-three/fiber": "^8.17.7",
"ajv": "^8.17.1",
"axios": "^1.7.7",
"crypto": "^1.0.1",
"firebase": "^10.14.1",
"flowbite-react": "^0.10.2",
"framer-motion": "^11.5.6",
"graphql": "^16.9.0",
"hamburger-react": "^2.5.1",
"js-cookie": "^3.0.5",
"lucide-react": "^0.452.0",
"next": "14.2.12",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"styled-components": "^6.1.13",
"swiper": "^11.1.14",
"three": "^0.168.0",
"twin.macro": "^3.4.1",
"uuidv4": "^6.2.13",
"yarn": "^1.22.22",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-react": "^7.25.7",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.2.1",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8",
"eslint-config": "^0.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.12",
"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",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.12"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss,json}": [
"prettier --write"
]
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}