-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "next-magic-auth",
"version": "0.1.0",
"private": true,
"workspaces": [
"game-server"
],
"scripts": {
"dev": "yarn server:run",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production yarn server:run",
"server:run": "node src/server/server.js",
"deploy": "now",
"deploy:prod": "now --prod",
"deploy:purge": "now rm magic --safe",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:client": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@react-three/drei": "^2.2.17",
"@sendgrid/mail": "^7.4.0",
"@sentry/browser": "^5.29.2",
"@sentry/integrations": "^5.29.2",
"@sentry/node": "^5.29.2",
"@sentry/tracing": "^5.29.2",
"colyseus.js": "^0.14.1",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"framer-motion": "^3.1.1",
"geo-from-ip": "^2.0.0",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.11.0",
"joi": "^17.3.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.25.0",
"next": "10.0.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intl": "^5.10.9",
"react-three-fiber": "^5.3.14",
"subscriptions-transport-ws": "^0.9.18",
"three": "^0.124.0",
"ua-parser-js": "^0.7.23",
"uuid": "^8.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.5",
"@zeit/next-source-maps": "^0.0.3",
"cross-env": "^7.0.3",
"prettier": "^2.2.1"
}
}