-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.57 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": "mantle",
"version": "0.5.0",
"types": "./src/index",
"description": "The mantle server & API",
"main": "./src/index",
"author": "Mathew Henson",
"license": "MIT",
"scripts": {
"build": "tsc",
"migrate-up": "migrate-mongo up --file=mm-config.js",
"migrate-down": "migrate-mongo down --file=mm-config.js",
"migrate-status": "migrate-mongo status --file=mm-config.js",
"migrate-create": "migrate-mongo create RENAME --file=mm-config.js",
"test": "mocha --file ./test/index.ts --recursive ./test/tests/**/*.ts --require ts-node/register --exit --config=./config.json --server=0 --logging=false --keyFile=./volume-credentials.json --runningTests=true",
"start": "nodemon",
"start-prod": "cross-env NODE_ENV=production ts-node ./src/main.ts --config=./config.json --logging=true --numThreads=1",
"generate-schema": "ts-node ./src/main.ts --config=./config.json --numThreads=1 --logging=true --inspect=true --writeSchema=true",
"generate-client-models": "graphql-codegen --config codegen.yml"
},
"devDependencies": {
"@graphql-codegen/cli": "1.17.8",
"@graphql-codegen/introspection": "1.17.8",
"@graphql-codegen/typescript": "1.17.8",
"@types/mocha": "~5.2.5",
"form-data": "2.3.1",
"graphql-tag": "2.12.6",
"mocha": "~5.2.0",
"prettier": "1.19.1"
},
"dependencies": {
"@google-cloud/storage": "~2.0.3",
"@types/bcrypt": "5.0.0",
"@types/compression": "0.0.36",
"@types/entities": "~1.1.0",
"@types/express-graphql": "0.9.0",
"@types/form-data": "~0.0.33",
"@types/formidable": "1.0.31",
"@types/graphql": "14.5.0",
"@types/mailgun-js": "0.22.4",
"@types/morgan": "^1.7.35",
"@types/node": "18.6.3",
"@types/rimraf": "^2.0.2",
"@types/sanitize-html": "~1.13.31",
"@types/validator": "^6.2.3",
"@types/ws": "0.0.42",
"@types/yargs": "~6.6.0",
"@types/node-fetch": "2.6.1",
"bcrypt": "5.0.1",
"node-fetch": "2.6.7",
"compressible": "2.0.18",
"compression": "1.7.4",
"cross-env": "7.0.2",
"express": "4.17.2",
"express-graphql": "0.12.0",
"formidable": "1.2.2",
"graphql": "15.3.0",
"mailgun-js": "0.22.0",
"migrate-mongo": "2.2.1",
"mongodb": "4.3.1",
"morgan": "1.9.1",
"nodemon": "2.0.2",
"reflect-metadata": "0.1.13",
"request": "2.88.2",
"rimraf": "2.6.2",
"sanitize-html": "1.22.1",
"ts-node": "10.5.0",
"tslint": "6.1.3",
"type-graphql": "1.1.1",
"typescript": "4.5.5",
"validator": "3.43.0",
"winston": "3.2.1",
"ws": "~2.2.3",
"yargs": "3.12.0"
}
}