-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "NODE_ENV=production node --experimental-json-modules ./scripts/setup.mjs",
"start": "next start",
"lint": "next lint",
"setup": "node --experimental-json-modules ./scripts/setup.mjs"
},
"dependencies": {
"@aws-sdk/client-sso-oidc": "^3.616.0",
"@aws-sdk/client-sts": "^3.616.0",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"@mongodb-js/zstd": "^1.2.0",
"@next-auth/mongodb-adapter": "^1.0.3",
"@react-three/drei": "^9.109.2",
"@react-three/fiber": "^8.16.8",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.2",
"aws4": "^1.13.0",
"bson-ext": "^4.0.3",
"dotenv": "^16.0.1",
"framer-motion": "^11.3.17",
"js-cookie": "^3.0.1",
"kerberos": "^2.1.0",
"mongodb": "^4.17.2",
"mongodb-client-encryption": "^6.0.1",
"next": "13.1.1",
"next-auth": "^4.24.7",
"next-mdx-remote": "^4.4.1",
"nodemailer": "^6.9.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.2.1",
"react-textarea-autosize": "^8.3.4",
"remark": "^14.0.3",
"remark-mdx": "^2.3.0",
"snappy": "^7.2.2",
"swr": "^2.0.0-beta.1",
"three": "^0.166.1"
},
"devDependencies": {
"@faker-js/faker": "^7.1.0",
"@types/js-cookie": "^3.0.2",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.14.12",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18.3.3",
"@types/three": "^0.166.0",
"autoprefixer": "^10.4.4",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"node-loader": "^2.0.0",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"typescript": "^4.9.5"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}