This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.08 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": "opensft",
"version": "0.1.0",
"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": "^0.24.0",
"bootstrap": "^5.1.3",
"date-fns": "^2.28.0",
"fontfaceobserver": "^2.3.0",
"isomorphic-unfetch": "^3.1.0",
"next": "12.1.6",
"next-mdx-remote": "^4.0.3",
"next-sitemap": "^3.0.5",
"react": "17.0.2",
"react-bootstrap": "^2.0.2",
"react-content-loader": "^6.0.3",
"react-dom": "17.0.2",
"react-img-zoom": "^0.1.0",
"react-input-range": "^1.3.0",
"react-mailchimp-subscribe": "^2.1.3",
"react-netlify-forms": "^1.3.2",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^7.2.6",
"react-responsive-modal": "^6.1.0",
"react-slick": "^0.28.1",
"react-toast-notifications": "^2.5.1",
"react-toastify": "^8.1.0",
"reactstrap": "^9.0.0",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.0",
"select2": "^4.1.0-rc.0",
"sharp": "^0.30.6",
"slick-carousel": "^1.8.1",
"swiper": "^7.2.0",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@types/node": "^17.0.36",
"@types/react": "18.0.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"gray-matter": "^4.0.3",
"prettier": "^2.6.2",
"sass": "^1.52.2",
"sass-loader": "^13.0.0",
"typescript": "^4.7.2",
"webpack": "^5.73.0"
}
}