-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.53 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for the Dogtor Platform",
"scripts": {
"build": "tsc --project .",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "NODE_PATH=./build node ./build/index.js",
"lint": "eslint ./src --ignore-pattern node_modules/ --ext .js,.ts",
"autofix": "eslint ./src --ignore-pattern node_modules/ --ext .js,.ts --fix",
"exportSchema": "ts-node ./scripts/exportSchema.ts",
"codegen": "graphql-codegen",
"codegenWatch": "nodemon --watch src/typeDefs.ts --watch codegen.yml --exec npm run codegen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dogtor-Assistant/backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dogtor-Assistant/backend/issues"
},
"homepage": "https://github.com/Dogtor-Assistant/backend#readme",
"dependencies": {
"@graphql-tools/schema": "^7.1.5",
"@sendgrid/mail": "^7.4.5",
"apollo-server-express": "^2.25.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bent": "^7.3.12",
"body-parser": "^1.19.0",
"compromise": "^13.11.2",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-relay": "^0.7.0",
"graphql-scalars": "^1.9.3",
"graphql-subscriptions": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"keyv": "^3.1.0",
"mongoose": "^5.12.7",
"natural": "^5.0.3",
"node-cron": "^3.0.0",
"react": "^17.0.2",
"subscriptions-transport-ws": "^0.9.19"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/typescript": "^1.22.1",
"@graphql-codegen/typescript-resolvers": "^1.19.2",
"@types/bcrypt": "^5.0.0",
"@types/bent": "^7.3.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.1",
"@types/keyv": "^3.1.1",
"@types/mongoose": "^5.11.97",
"@types/natural": "^2.1.1",
"@types/node": "^15.6.1",
"@types/node-cron": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import-newlines": "^1.1.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}