-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.44 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
{
"name": "project-oregano",
"private": true,
"description": "Official repository for HackNITR 6.0",
"version": "1.3.0",
"license": "MIT",
"main": "src/pages/index.js",
"keywords": [
"hacknitr",
"website",
"react",
"nextjs",
"tailwind",
"dscnitrourkela",
"nitrourkela"
],
"repository": {
"type": "git",
"url": "https://github.com/dscnitrourkela/project-oregano.git"
},
"bugs": {
"url": "https://github.com/dscnitrourkela/project-oregano.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": {
"@babel/core": "^7.25.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@react-three/drei": "^9.120.6",
"@react-three/fiber": "^8.17.12",
"ajv": "^8.17.1",
"framer-motion": "^11.17.0",
"geist": "^1.3.1",
"lenis": "^1.1.19",
"lucide-react": "^0.471.0",
"maath": "^0.10.8",
"next": "14.2.12",
"react": "^18",
"react-dom": "^18",
"react-fast-marquee": "^1.6.5",
"styled-components": "^6.1.13",
"three": "^0.172.0",
"twin.macro": "^3.4.1"
},
"devDependencies": {
"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.0.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"
}
}
}