-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.19 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
{
"name": "@innovatefusion/architect",
"author": "Innvate Fusion",
"version": "4.2.0",
"description": "A generative AI powered Architect",
"private": true,
"scripts": {
"dev": "next dev -p 3034",
"start": "next start",
"build": "next build",
"build-netlify": "next build && cp -r .next _next && mv _next .next/",
"export": "yarn build && next export -o _static",
"lint": "eslint --ext .js,.jsx .",
"lint:fix": "eslint --fix --ext .js,.jsx .",
"prettier": "prettier --write 'src/**/*.{js,jsx}'",
"clear-all": "rm -rf .next .swc _static node_modules",
"re-start": "rm -rf .next .swc _static node_modules && yarn install && yarn dev",
"re-build": "rm -rf .next .swc _static node_modules && yarn install && yarn build"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@iconify/react": "^4.0.1",
"@mui/lab": "^5.0.0-alpha.116",
"@mui/material": "^5.11.5",
"@next/font": "^13.1.2",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.2.3",
"change-case": "^4.1.2",
"date-fns": "^2.29.3",
"framer-motion": "^8.4.7",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"lodash": "^4.17.21",
"next": "^13.1.2",
"notistack": "^2.0.8",
"nprogress": "^0.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"react-i18next": "^12.1.4",
"react-lazy-load-image-component": "^1.5.6",
"simplebar-react": "^3.1.0",
"stylis": "^4.1.3",
"stylis-plugin-rtl": "^2.1.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
}
}