-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "kitchen",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "git commit -F msg.txt && npm run msg",
"msg": "echo 'If you're reading this, then I forgot to write a commit message. Whoops!' > msg.txt"
},
"dependencies": {
"@apollo/client": "^3.7.4",
"@react-three/cannon": "^6.5.2",
"@react-three/drei": "^9.56.4",
"@react-three/fiber": "^8.10.0",
"graphql": "^16.6.0",
"graphql-yoga": "^3.3.0",
"mongoose": "^6.8.4",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"three": "^0.148.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@next/font": "^13.1.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/three": "^0.149.0",
"@types/uuid": "^9.0.2",
"colors": "^1.4.0",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.2",
"gltfjsx": "^6.1.4",
"sass": "^1.59.2",
"typescript": "^4.9.5"
}
}