-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "rsvp-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"export": "next export -o dist/",
"build:deploy": "next build && next export -o dist/"
},
"dependencies": {
"@fontsource/inter": "^4.4.5",
"@tailwindcss/forms": "^0.3.3",
"aos": "^2.3.4",
"axios": "^0.21.1",
"framer-motion": "^4.1.17",
"multiselect-react-dropdown": "^2.0.25",
"next": "11.0.1",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-particles-js": "^3.5.3",
"react-query": "^3.18.1",
"react-responsive-carousel": "^3.2.19",
"react-share": "^4.4.0",
"react-tsparticles": "^1.32.0",
"sweetalert2": "^11.1.4",
"tailwind-scrollbar-hide": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@types/aos": "^3.0.3",
"@types/react": "17.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.0",
"autoprefixer": "^10.2.6",
"eslint": "^7.29.0",
"eslint-config-next": "11.0.1",
"husky": "^6.0.0",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.4",
"typescript": "4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run build"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn run lint:fix"
],
"**/*.{md,mdx,json}": [
"prettier --write"
]
}
}