-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "thetextilecode",
"version": "0.1.0-dev",
"private": true,
"scripts": {
"deploy": "git push origin main && vercel --prod",
"dev": "next dev",
"build": "next build",
"format": "prettier --write \"**/*.{mdx,tsx,ts,md,js,jsx,json}\"",
"format-watch": "yarn format && onchange \"**/*.{mdx,tsx,ts,md,js,jsx,json}\" -- prettier --write {{changed}}",
"lint": "next lint",
"lint:fix": "yarn lint --fix",
"lint-staged": "yarn lint:fix && yarn format:fix",
"postbuild": "next-sitemap",
"start": "next start",
"sass": "sass -w public/assets/sass/main.scss:public/assets/css/main.css",
"typecheck": "tsc"
},
"dependencies": {
"axios": "^1.5.0",
"bootstrap": "^5.3.2",
"date-fns": "^2.30.0",
"fontfaceobserver": "^2.3.0",
"isomorphic-unfetch": "^4.0.2",
"next": "^13.5.3",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-img-zoom": "^0.1.0",
"react-input-range": "^1.3.0",
"react-mailchimp-subscribe": "^2.1.3",
"react-netlify-forms": "^1.3.3",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^8.1.2",
"react-responsive-modal": "^6.4.2",
"react-slick": "^0.29.0",
"react-toast-notifications": "^2.5.1",
"react-toastify": "^9.1.3",
"reactstrap": "^9.2.0",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2",
"select2": "^4.1.0-rc.0",
"sharp": "^0.32.6",
"slick-carousel": "^1.8.1",
"swiper": "^10.3.0",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@types/node": "^20.7.0",
"@types/react": "18.2.23",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "8.50.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gray-matter": "^4.0.3",
"prettier": "^3.0.3",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"typescript": "^5.2.2",
"webpack": "^5.88.2"
}
}