forked from ComputerScienceSoceityNITS/CSSWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "css-website-2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@lottiefiles/lottie-player": "^1.5.4",
"@tanem/react-nprogress": "^4.0.13",
"axios": "^0.26.1",
"emailjs-com": "^3.2.0",
"eslint-config-google": "^0.14.0",
"font-awesome": "^4.7.0",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-lottie": "^1.2.3",
"react-reveal": "^1.2.2",
"react-typed": "^1.2.0",
"react-typical": "^0.1.3",
"run": "^1.4.0",
"swiper": "^8.4.5",
"zustand": "^3.7.2"
},
"devDependencies": {
"@types/node": "17.0.7",
"@types/react": "^17.0.38",
"@types/react-lottie": "^1.2.6",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"prettier": "2.5.1",
"typescript": "4.5.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}