-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"src/**/*.tsx\" \"src/**/*.ts\""
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@sanity/client": "^6.11.1",
"@sanity/icons": "^2.0",
"@sanity/image-url": "^1.0.2",
"@sanity/types": "^3.19",
"@sanity/ui": "^2.0.0-beta",
"@sanity/vision": "^3.24.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"formidable": "^3.5.1",
"next": "^14.0",
"next-auth": "^4.24.5",
"next-connect": "^1.0.0",
"next-sanity": "^7.0.9",
"openai": "^4.24.7",
"pdf-parser-client-side": "^1.0.1",
"pdf.js-extract": "^0.2.1",
"react": "^18.2",
"react-dom": "latest",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.49.3",
"react-material-ui-carousel": "^3.4.2",
"react-pdf": "^7.7.0",
"sanity": "^3.24.1",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/dat.gui": "^0.7.12",
"@types/formidable": "^3.4.5",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"autoprefixer": "latest",
"dat.gui": "^0.7.9",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "latest",
"prettier": "^3.1.1",
"tailwindcss": "latest",
"typescript": "latest",
"webpack-cli": "^5.1.4"
}
}