forked from razee-io/Razeedash-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.65 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
93
94
95
96
97
98
99
100
{
"name": "razeedash-api",
"version": "0.6.3",
"description": "API for razeedash and graphql",
"license": "Apache-2.0",
"main": "app/index.js",
"scripts": {
"start": "node app/index.js",
"dev": "nodemon -r dotenv/config app/index.js | bunyan",
"local": "export AUTH_MODEL=local; nodemon app/index.js | bunyan",
"start:mon": "nodemon app/index.js | bunyan",
"start:debug": "node --inspect-brk app/index.js",
"test": "nyc --all --exclude=**/*.tests.js --exclude=**/*.spec.js --exclude=app/apollo/**/*.js --exclude=coverage/* --reporter=html --reporter=text mocha -r dotenv/config **/*.tests.js",
"test:apollo": "export ENABLE_GRAPHQL=true; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 --exit 'app/apollo/test/*.spec.js'",
"test:apollo:local": "export ENABLE_GRAPHQL=true; export AUTH_MODEL=local; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 'app/apollo/test/*.spec.js'",
"test:apollo:passport.local": "export ENABLE_GRAPHQL=true; export AUTH_MODEL=passport.local; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 'app/apollo/test/*.spec.js'",
"wait-mongo": "node app/wait-mongo.js",
"lint": "npx npm-run-all eslint yamllint dockerlint markdownlint",
"eslint": "npx eslint app/",
"yamllint": "npx yamllint .travis.yml kubernetes/razeedash-api/resource.yaml",
"dockerlint": "npx dockerlint Dockerfile",
"markdownlint": "npx markdownlint README.md docs/"
},
"keywords": [],
"author": "",
"contributors": [],
"dependencies": {
"apollo-server": "^2.10.1",
"apollo-server-express": "^2.10.1",
"aws-sdk": "^2.651.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"clone": "^2.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"delay": "^4.3.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-bunyan-logger": "^1.3.3",
"express-query-boolean": "^2.0.0",
"express-request-id": "^1.4.1",
"fs-readfile-promise": "^3.0.1",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"graphql-passport": "^0.6.3",
"graphql-redis-subscriptions": "^2.1.2",
"graphql-resolvers": "^0.4.2",
"graphql-tag": "^2.10.3",
"graphql-type-json": "^0.3.1",
"ioredis": "^4.16.1",
"is-port-reachable": "^3.0.0",
"json-key-validate": "^1.0.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"mongodb": "^3.5.5",
"mongoose": "^5.9.7",
"mustache": "^4.0.1",
"object-hash": "^2.0.3",
"object-path": "^0.11.4",
"p-limit": "^2.2.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"socket.io": "^2.3.0",
"subscriptions-transport-ws": "^0.9.16",
"swagger-ui-express": "^4.1.4",
"uuid": "^7.0.3",
"validator": "^12.2.0",
"ws": "^7.2.3"
},
"devDependencies": {
"axios": "^0.19.2",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"dockerlint": "^0.3.9",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"ioredis-mock": "^4.19.0",
"markdownlint-cli": "^0.22.0",
"mocha": "^7.1.1",
"mongo-mock": "^4.0.0",
"mongodb-memory-server": "^6.4.1",
"nock": "^12.0.3",
"node-mocks-http": "^1.8.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"rewire": "^5.0.0",
"sinon": "^9.0.1",
"socket.io-mock": "^1.2.4",
"why-is-node-running": "^2.1.2",
"yaml-lint": "^1.2.4"
}
}