-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.9 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
{
"name": "rucogs.github.io-backend",
"version": "1.0.0",
"type": "commonjs",
"private": true,
"scripts": {
"start": "node dist/server",
"start:recompile": "npm run compile:app && node dist/server",
"start:rebuild": "npm -s run build && node dist/server",
"mock": "node dist/_tools/mock-server",
"mock:recompile": "npm run compile:tools && npm run mock",
"tools": "node dist/_dev/server",
"tools:recompile": "npm run compile:tools && node dist/_tools/server",
"generate": "npm run generate:typetta && npm run generate:graphql-endpoint",
"generate:typetta": "typetta generate --config typetta.yml",
"generate:graphql-endpoint": "npx graphql-codegen",
"compile:app": "npm run clean && tsc --project tsconfig.app.json && resolve-tspaths && gulp assets",
"compile:tools": "npm run clean && tsc --project tsconfig.tools.json && resolve-tspaths && gulp assets",
"tidy-uploads": "npm run compile:tools && node dist/_tools/tidy-uploads",
"clean": "rimraf dist",
"build-no-gen": "npm run clean && npm run compile:app",
"build": "npm run clean && npm run generate && npm run compile:app",
"pretty": "prettier --write \"src//**/*.ts\""
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.11",
"@graphql-codegen/typescript-resolvers": "^2.6.4",
"@types/async-lock": "^1.1.5",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/graphql-upload": "^8.0.11",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.7",
"@types/passport-discord": "^0.1.5",
"@types/passport-google-oauth20": "^2.0.11",
"@types/prompts": "^2.0.14",
"@types/random-seed": "^0.3.3",
"@types/sharp": "^0.30.4",
"gulp": "^4.0.2",
"prettier": "^2.7.1",
"random-seed": "^0.3.0",
"resolve-tspaths": "^0.4.0",
"txtgen": "^3.0.1",
"typescript": "^4.5.4",
"typescript-cp": "^0.1.5"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.14",
"@svgdotjs/svg.js": "^3.1.2",
"@twinlogix/typetta": "^2.1.1",
"apollo-server": "^3.8.1",
"apollo-server-core": "^3.8.2",
"async-lock": "^1.3.2",
"deep-equal": "^2.0.5",
"glob": "^8.0.3",
"got-cjs": "^12.0.1",
"graphql": "^15.8.0",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^13.0.0",
"graphql-ws": "^5.9.0",
"handlebars": "^4.7.7",
"inline-sass-commonjs": "^1.0.1",
"mongodb": "^4.3.1",
"nodemailer": "^6.7.7",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"passport-google-oauth20": "^2.0.0",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"rucogs.github.io-backend": "file:",
"sanitize-filename": "^1.6.3",
"sharp": "^0.30.7",
"svgdom": "^0.1.10",
"tsconfig-paths": "^4.0.0",
"type-fest": "^2.13.0",
"ws": "^8.8.0"
}
}