-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 3.11 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "baseball-theater-v2",
"version": "1.0.0",
"description": "",
"main": "server/server.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm install --prefix client",
"update-engine": "cd baseball-theater-engine && tsc && cd ../client && pnpm upgrade baseball-theater-engine",
"client": "cd client && pnpm start",
"server:start": "node -r ts-node/register --inspect=5001 --nolazy server/server.ts --runInBand",
"server:watch": "nodemon",
"start": "concurrently --kill-others \"pnpm server:watch\" \"pnpm client\"",
"clean": "rm -rf output",
"build": "pnpm clean && pnpm build:client && pnpm build:server:prod",
"build:client": "cd client && pnpm build",
"build:server:beta": "node server/scripts/build_v2.js -serverenv=beta",
"build:server:prod": "node server/scripts/build_v2.js -serverenv=prod",
"finalize": "node server/scripts/finalize.js",
"relay": "relay-compiler --watch --src ./client/src --schema ./client/src/Global/GQL/schema.generated.gql --language typescript --extensions ts tsx"
},
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "7.9.1",
"@types/node": "^20.12.12",
"abortcontroller-polyfill": "1.3.0",
"apicache": "1.6.3",
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.6.8",
"apollo-link-http": "1.5.16",
"aws-elasticsearch-connector": "9.0.0",
"aws-sdk": "2.771.0",
"baseball-theater-engine": "file:./baseball-theater-engine/dist",
"client-oauth2": "4.2.5",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cross-fetch": "3.0.4",
"customize-cra": "^1.0.0",
"eslint-plugin-import": "2.20.1",
"express": "4.17.1",
"express-serve-static-core": "0.1.1",
"graphql": "14.6.0",
"graphql-tag": "2.10.3",
"moment": "2.24.0",
"moment-timezone": "0.5.26",
"mongodb": "3.3.2",
"relay-compiler": "11.0.0",
"relay-compiler-language-typescript": "13.0.6",
"relay-config": "11.0.0",
"simple-oauth2": "3.1.0",
"ts-node": "8.3.0",
"typescript": "5.4.5",
"uuid-apikey": "1.4.4",
"x2js": "3.3.1"
},
"devDependencies": {
"7zip-bin": "5.0.3",
"@types/apicache": "1.2.2",
"@types/aws-sdk": "2.7.0",
"@types/body-parser": "1.19.0",
"@types/compression": "1.0.1",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.1",
"@types/mongodb": "3.3.3",
"@types/node-fetch": "2.6.2",
"@types/serve-static": "1.13.3",
"@types/simple-oauth2": "2.2.1",
"@types/swagger-jsdoc": "3.0.2",
"@types/swagger-ui-react": "3.23.0",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"body-parser": "1.19.0",
"concurrently": "4.0.1",
"eslint": "6.3.0",
"eslint-plugin-react": "7.14.3",
"friendly-errors-webpack-plugin": "1.7.0",
"fs-extra": "8.1.0",
"gar": "1.0.4",
"node-7z": "2.1.1",
"nodemon": "2.0.2",
"patreon": "0.4.1",
"serve-static": "1.14.1",
"swagger-jsdoc": "3.4.0",
"swagger-ui-react": "3.23.11",
"ts-loader": "6.1.0",
"webpack": "4.39.1",
"webpack-cli": "3.3.8"
}
}