-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.21 KB
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
{
"name": "datascienceclub-website",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"style:all": "yarn run style:lint && npm run style:prettier",
"style:lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" || true",
"style:prettier": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" || true",
"make-pretty": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install"
},
"dependencies": {
"@cloudinary/react": "^1.14.3",
"@cloudinary/url-gen": "^1.22.0",
"@splinetool/react-spline": "^4.1.0",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"cloudinary": "^2.8.0",
"emailjs-com": "^3.2.0",
"gsap": "^3.13.0",
"jquery": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-icons": "^4.12.0",
"react-router-dom": "^6.20.0",
"react-tsparticles": "2.12.2",
"tsparticles": "2.0.6",
"web-vitals": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"autoprefixer": "^10.4.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^16.2.7",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"react-scripts": "^5.0.1",
"sitemap": "^9.0.0",
"tailwindcss": "^3.0.16",
"typescript": "^4.5.5",
"vercel": "^48.10.11"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}