This repository was archived by the owner on Jul 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.51 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.51 KB
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
{
"name": "@unicsmcr/unics_social_api",
"version": "0.2.1",
"description": "networking for CS students at the University of Manchester",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "make test",
"start": "ts-node src/app | npx pino-pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unicsmcr/unics_social_api.git"
},
"keywords": [
"social",
"network",
"manchester",
"computer",
"science",
"api",
"database"
],
"author": "UniCS <amish@unicsmcr.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/unicsmcr/unics_social_api/issues"
},
"homepage": "https://github.com/unicsmcr/unics_social_api#readme",
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/jest": "^26.0.4",
"@types/multer": "^1.4.4",
"@types/node": "^14.0.22",
"@types/sharp": "^0.25.1",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@unicsmcr/eslint-config": "0.0.2",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"pino-pretty": "^4.2.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"ts-mockito": "^2.6.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.7",
"uuid": "^8.3.0"
},
"eslintConfig": {
"extends": "@unicsmcr",
"parserOptions": {
"project": "tsconfig.eslint.json"
},
"env": {
"jest": true
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/tests/fixtures"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"src/app.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/util/setup.ts"
]
},
"dependencies": {
"@pm2/io": "^4.3.5",
"@spectacles/rest": "^0.8.3",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.7",
"@types/express-rate-limit": "^5.1.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/nodemailer": "^6.4.0",
"@types/pino": "^6.3.0",
"@types/ws": "^7.2.6",
"axios": "^0.20.0",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nodemailer": "^6.4.11",
"pg": "^8.3.0",
"pino": "^6.5.1",
"reflect-metadata": "^0.1.13",
"sharp": "^0.25.4",
"tsyringe": "^4.3.0",
"twilio": "^3.48.2",
"typeorm": "^0.2.25",
"ws": "^7.3.1"
}
}