-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.87 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
{
"name": "pogoda24-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@cloudinary/react": "1.11.2",
"@cloudinary/url-gen": "^1.10.1",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"@types/node": "20.2.1",
"@types/lodash": "^4.14.195",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"axios-retry": "^3.5.0",
"bulma": "^0.8.1",
"bulma-extensions": "6.2.7",
"classnames": "^2.3.2",
"cookie": "0.5.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"firebase-admin": "^11.8.0",
"lodash": "^4.17.21",
"minimatch": "9.0.1",
"next": "13.4.3",
"react": "18.2.0",
"react-cookie": "4.1.1",
"react-dom": "18.2.0",
"react-modal": "^3.16.1",
"react-paginate": "^8.2.0",
"react-select": "^5.7.3",
"suneditor": "2.28.4",
"suneditor-react": "2.10.1",
"styled-components": "^5.3.11",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/react-paginate": "^7.1.1",
"@types/react-modal": "^3.16.0",
"@types/styled-components": "^5.1.26",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"postcss": "8.4.23",
"prettier": "^2.8.8",
"sass": "^1.62.1"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"printWidth": 120
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}