-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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": "Nutrition-App",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"fmt": "prettier --write \"**/*.{js,ts,tsx}\"",
"prepare": "husky install",
"pre-commit": "lint-staged -v",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{html,css,md,json,yaml}": "prettier --write",
"*.{js,ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"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",
"@prisma/client": "^4.2.0",
"axios": "^0.26.1",
"browser-image-compression": "^1.0.17",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"firebase": "^9.6.10",
"firebase-admin": "^10.0.2",
"fuse.js": "^6.5.3",
"next": "12.0.8",
"prisma": "^4.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-swipeable-views": "^0.14.0",
"react-toastify": "^9.0.8",
"recoil": "^0.7.4",
"swiper": "^7.4.1",
"swr": "^1.2.2",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/browser-image-compression": "^1.0.9",
"@types/node": "17.0.9",
"@types/react": "^17.0.38",
"autoprefixer": "^10.4.2",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.4",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.15",
"typescript": "4.5.4"
}
}