-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.43 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
{
"name": "wxr3-server",
"version": "1.0.0",
"description": "Server of weightxreps.net",
"main": "index.js",
"scripts": {
"dev": "tsnd --respawn --clear server/index.ts",
"build": "tsc",
"start": "NODE_ENV=production node server-to-upload/index.js",
"build-and-run": "npm run build && npm start",
"exportschema": "graphql-codegen --config codegen.yml",
"update-sbd-rank": "node sbd-rank/update-sbdrank-data.mjs",
"seed-db": "NODE_ENV=production tsnd wxr-dev-db/fill-with-dummy-data.js seed --dt=true",
"truncate-db": "NODE_ENV=production tsnd wxr-dev-db/fill-with-dummy-data.js seed --dt=false"
},
"repository": {
"type": "git",
"url": "https://github.com/bandinopla/weightxreps-server.git"
},
"keywords": [],
"author": "pablo@weightxreps.net",
"license": "GPL-3.0",
"dependencies": {
"@graphql-tools/schema": "^7.1.5",
"@graphql-tools/utils": "^8.1.0",
"@graphql-tools/wrap": "^8.0.10",
"@node-oauth/express-oauth-server": "^4.1.1",
"@node-oauth/oauth2-server": "^5.2.0",
"apollo-server": "^3.0.2",
"apollo-server-express": "^3.1.1",
"apollo-server-plugin-response-cache": "^3.1.1",
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"express": "^4.17.1",
"firebase-admin": "^10.0.2",
"google-auth-library": "^7.11.0",
"graphql": "^15.5.1",
"graphql-subscriptions": "^1.2.1",
"graphql-tools": "^8.1.0",
"graphql-upload": "^12.0.0",
"html-entities": "^2.3.2",
"jsonwebtoken": "^8.5.1",
"lru-cache": "^11.0.1",
"md5": "^2.3.0",
"mysql": "^2.18.1",
"node-emoji": "^2.1.3",
"nodemailer": "^6.6.5",
"stream-to-promise": "^3.0.0",
"twit": "^2.2.11"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/fragment-matcher": "3.0.0",
"@graphql-codegen/introspection": "2.0.0",
"@graphql-codegen/plugin-helpers": "^5.0.4",
"@graphql-codegen/typescript": "^2.0.0",
"@graphql-codegen/typescript-operations": "^2.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.0.0",
"@tsconfig/node18": "^18.2.4",
"@types/compression": "^1.7.5",
"@types/graphql-upload": "^16.0.7",
"@types/node": "^22.5.5",
"glob": "^11.0.0",
"request": "^2.88.2",
"rimraf": "^6.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2",
"unzipper": "^0.10.11",
"yargs": "^17.7.2"
}
}