-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.63 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
70
71
72
73
74
75
76
{
"name": "@uo/member-authentication",
"version": "1.0.0",
"scripts": {
"clean": "rm -rf .next",
"dev": "NODE_ENV=development nodemon",
"build": "NODE_ENV=production npm run clean && next build && tsc --project tsconfig.server.json && cp -r keys .next && cp .env .next && cp public/*.png .next/public",
"start": "node .next/server",
"deploy": "read -p \"GCP Project ID: \" PROJ_ID; gcloud --project $PROJ_ID app deploy app.yaml --version main --verbosity=debug",
"stubs": "protoc -I /users/matt/workspace/unitedoperations/uo-discordbot/src/protos --plugin=\"protoc-gen-ts=./node_modules/.bin/protoc-gen-ts\" --js_out=\"import_style=commonjs,binary:./server/lib/grpc\" --ts_out=\"service=true:./server/lib/grpc\" provision.proto"
},
"dependencies": {
"@google-cloud/connect-datastore": "^4.0.0",
"@google-cloud/datastore": "^5.0.4",
"@grpc/proto-loader": "^0.5.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"grpc": "^1.24.2",
"helmet": "^3.21.2",
"morgan": "^1.9.1",
"next": "^9.5.3",
"node-fetch": "^2.6.0",
"node-teamspeak": "^1.0.10",
"nodemailer": "^6.4.2",
"passport": "^0.4.1",
"passport-oauth2": "^1.5.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"whatwg-fetch": "^3.0.0",
"yaml": "^1.7.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@types/compression": "1.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/helmet": "0.0.45",
"@types/morgan": "^1.7.37",
"@types/next": "^9.0.0",
"@types/node": "^13.7.0",
"@types/node-fetch": "^2.5.4",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.2",
"@types/passport-oauth2": "^1.4.8",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/shortid": "0.0.29",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/whatwg-fetch": "0.0.33",
"@types/yaml": "^1.2.0",
"@zeit/next-css": "^1.0.1",
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"google-protobuf": "^3.11.3",
"nodemon": "^2.0.2",
"protobufjs": "^6.8.8",
"ts-node": "^8.6.2",
"ts-protoc-gen": "^0.12.0",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"webpack": "^4.41.5"
}
}