-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.86 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
91
92
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "nodemon --ignore '*.spec.*' server.ts",
"dev-server": "cross-env NODE_ENV=development npm run server",
"newman": "node_modules/.bin/newman run",
"gen-test-data": "tsc && node -e \"require('./build/test_data/seed.js').writeData({directory:'../../test_data'});\"",
"mocha": "nyc mocha --file graphql_tests/mocha_globals.ts -r ts-node/register graphql_tests/**/*.spec.ts",
"test": "cross-env NODE_ENV=test npm run mocha",
"test-experimental": "cross-env NODE_ENV=test npm run mocha-experimental",
"mocha-experimental": "mocha --file test/mocha_globals.ts -r ts-node/register test/**/*.test.ts",
"tdd-server": "cross-env-shell NODE_ENV=development nodemon -e ts,json --exec \"npm run mocha || true\"",
"build": "tsc -p ."
},
"nyc": {
"include": "GQL/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"@typegoose/typegoose": "^7.4.2",
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.161",
"@types/mongoose": "^5.7.36",
"@types/multer": "^1.4.4",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"@types/web-push": "^3.3.0",
"apollo-server-express": "^2.19.0",
"aws-sdk": "^2.792.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"buffer-image-size": "^0.6.4",
"class-validator": "^0.12.2",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"cryptiles": ">=4.1.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"geolib": "^3.3.1",
"graphql": "^15.4.0",
"graphql-subscriptions": "^1.1.0",
"hoek": ">=4.2.1",
"lodash": "^4.17.20",
"mongoose": "^5.10.6",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"node-uuid": ">=1.4.4",
"passport": "^0.4.1",
"passport-cas": "^0.1.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"resize-image-buffer": "^1.0.0",
"ssri": ">=5.2.2",
"stripe": "^8.132.0",
"subscriptions-transport-ws": "^0.9.18",
"twilio": "^3.53.0",
"type-graphql": "^1.1.1",
"usps-webtools": "^1.0.3",
"web-push": "^3.4.4"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/faker": "^5.1.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"apollo-server-testing": "^2.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^7.0.2",
"faker": "^5.1.0",
"mocha": "^8.2.0",
"newman": "^5.2.0",
"nodemon": "^2.0.4",
"npx": "^10.2.2",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}