-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 3.63 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "atlp-pulse-backend",
"version": "1.0.0",
"description": "ATLP app backend",
"main": "src/index.ts",
"scripts": {
"start": "tsc && node dist/index",
"clean": "tsc --build --clean",
"seed": "tsc --noEmit && ts-node-dev --transpile-only --no-notify --exit-child src/seeders/index.ts",
"dev": "tsc --noEmit && ts-node-dev --respawn --transpile-only --no-notify --exit-child src/index.ts",
"build": "tsc",
"test": "npm run seed && tsc && nyc mocha",
"lint": "eslint src --fix .",
"format": "npx prettier --write .",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"kill": "sudo kill -9 $(sudo lsof -t -i :4000)"
},
"mocha": {
"extension": [
"ts"
],
"spec": "src/test/**/*.spec.ts",
"require": "ts-node/register",
"exit": true,
"timeout": 10000
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"reporter": [
"lcov",
"text-summary"
],
"all": "true",
"exclude": [
"dist",
"coverage",
"src/seeders",
"src/utils"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlp-rwanda/atlp-pulse-backend.git"
},
"keywords": [
"ed-tech",
"graphql",
"typescript"
],
"author": "ceelogre",
"license": "ISC",
"bugs": {
"url": "git+https://github.com/atlp-rwanda/atlp-pulse-backend.git"
},
"homepage": "https://github.com/atlp-rwanda/atlp-pulse-backend#readme",
"dependencies": {
"@apollo/server": "^4.11.0",
"@faker-js/faker": "^9.0.0",
"@graphql-tools/merge": "^8.3.3",
"@graphql-tools/schema": "^9.0.10",
"@graphql-tools/utils": "^10.0.4",
"@octokit/graphql": "^7.0.1",
"@octokit/rest": "^19.0.13",
"@types/node-cron": "^3.0.11",
"apollo-server": "^3.13.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.30.1",
"cors": "^2.8.5",
"date-fns": "^2.29.2",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"expo-server-sdk": "^3.11.0",
"express": "^4.18.1",
"generate-password": "^1.7.0",
"graphql": "^16.5.0",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"graphql-upload-ts": "^2.1.2",
"graphql-ws": "^5.16.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^4.17.1",
"mongoose": "^6.6.1",
"node-cron": "^3.0.3",
"node-fetch": "^2.6.12",
"nodemailer": "^6.7.8",
"normalize-mongoose": "^1.0.0",
"request-ip": "^3.3.0",
"ts-node-dev": "^2.0.0",
"tslog": "^4.9.2",
"ws": "^8.11.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.3.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^8.0.3",
"@types/node": "^13.13.52",
"@types/node-fetch": "^2.6.4",
"@types/nodemailer": "^6.4.6",
"@types/request-ip": "^0.0.41",
"@types/ws": "^8.5.10",
"@types/xlsx": "^0.0.35",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"assert": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"mocha": "^10.7.3",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"source-map-support": "^0.5.19",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}