-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
69
{
"name": "rgbjoy-com",
"private": true,
"browserslist": [
"defaults"
],
"scripts": {
"=== Core commands ===": "",
"dev": "next dev",
"dev turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"=== Payload commands ===": "",
"payload": "PAYLOAD_CONFIG_PATH=src/payload.config.ts payload",
"migrate:create": "payload migrate:create",
"migrate": "payload migrate",
"generate:importmap": "payload generate:importmap",
"generate:db-schema": "payload generate:db-schema",
"=== Production commands ===": "",
"migrate_build": "payload migrate && pnpm build",
"=== Development tools ===": "",
"update packages": "pnpm update",
"lint": "next lint",
"type-check": "tsc",
"format": "prettier --write ."
},
"type": "module",
"dependencies": {
"@next/third-parties": "^15.1.7",
"@payloadcms/db-postgres": "^3.23.0",
"@payloadcms/email-resend": "^3.23.0",
"@payloadcms/next": "^3.23.0",
"@payloadcms/richtext-lexical": "^3.23.0",
"@payloadcms/storage-s3": "^3.23.0",
"@payloadcms/ui": "^3.23.0",
"@react-three/drei": "rc",
"@react-three/fiber": "rc",
"@react-three/postprocessing": "^2.19.1",
"@react-three/rapier": "^1.5.0",
"@react-three/rapier-addons": "^3.0.3",
"framer-motion": "^11.18.2",
"graphql": "^16.10.0",
"gsap": "^3.12.7",
"html-react-parser": "^5.2.2",
"next": "^15.1.7",
"normalize.css": "^8.0.1",
"payload": "^3.23.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-masonry-css": "^1.0.16",
"sass": "1.77.6",
"sass-loader": "^16.0.4",
"sharp": "^0.33.5",
"three": "^0.160.1",
"three-stdlib": "^2.35.13",
"valtio": "^1.13.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@types/node": "^20.17.17",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/three": "^0.160.0",
"eslint": "^9.20.1",
"eslint-config-next": "^15.1.7",
"prettier": "^3.5.0",
"typescript": "^5.7.3"
}
}