-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.22 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.22 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
{
"name": "hackthe6ix-backend",
"version": "1.0.0",
"description": "The best hackathon backend",
"main": "dist/index.js",
"scripts": {
"start:bootstrap": "NODE_ENV=production node ./dist/bootstrap/bootstrap.js",
"start": "NODE_ENV=production node ./dist/index.js",
"dev": "NODE_ENV=development nodemon --ext ts --exec 'ts-node' src/index.ts",
"build": "tsc",
"prettier": "prettier --check \"**/*.ts\"",
"prettier:fix": "npm run prettier -- --write",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_ENV=test jest --runInBand --coverage \\.test\\.ts",
"test:windows": "set NODE_ENV=test && jest --runInBand --coverage \\.test\\.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hack-the-6ix/hackthe6ix-backend.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hack-the-6ix/hackthe6ix-backend/issues"
},
"homepage": "https://github.com/hack-the-6ix/hackthe6ix-backend#readme",
"dependencies": {
"@azure/monitor-opentelemetry-exporter": "^1.0.0-beta.31",
"@azure/storage-blob": "^12.27.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/instrumentation": "^0.202.0",
"@opentelemetry/instrumentation-express": "^0.51.0",
"@opentelemetry/instrumentation-http": "^0.202.0",
"@opentelemetry/instrumentation-mongodb": "^0.55.0",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-trace-base": "^1.30.1",
"@opentelemetry/sdk-trace-node": "^1.30.1",
"@opentelemetry/semantic-conventions": "^1.34.0",
"airtable": "^0.12.2",
"archiver": "^7.0.1",
"axios": "^1.9.0",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"deepcopy": "^2.1.0",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.5.1",
"express-mongo-sanitize": "^2.2.0",
"file-type": "^21.0.0",
"google-auth-library": "^10.1.0",
"jsonwebtoken": "^9.0.2",
"jsqr": "^1.4.0",
"lodash.clonedeep": "^4.5.0",
"mongoose": "^6.10.3",
"mongoose-autopopulate": "^1.0.0",
"node-cache": "^5.1.2",
"node-jose": "^2.2.0",
"passkit-generator": "^3.4.0",
"qrcode": "^1.5.4",
"short-uuid": "^5.2.0",
"simple-oauth2": "^5.1.0",
"typescript": "^4.9.5",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/archiver": "^6.0.3",
"@types/cors": "^2.8.18",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash.clonedeep": "^4.5.7",
"@types/node": "^22.15.30",
"@types/node-jose": "^1.1.13",
"@types/qrcode": "^1.5.5",
"@types/semver": "^7.7.0",
"@types/simple-oauth2": "^5.0.7",
"@types/unzipper": "^0.10.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^29.5.0",
"jest-mock-random": "^1.1.1",
"mockdate": "^3.0.5",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.1.10",
"prettier": "^2.8.4",
"ts-node": "^10.9.2",
"unzipper": "^0.12.3"
}
}