-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 3.06 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
{
"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": {
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.0.0",
"@opentelemetry/api": "^1.4.1",
"@opentelemetry/instrumentation": "^0.36.0",
"@opentelemetry/instrumentation-express": "^0.32.1",
"@opentelemetry/instrumentation-http": "^0.36.0",
"@opentelemetry/instrumentation-mongodb": "^0.34.1",
"@opentelemetry/resources": "^1.1.1",
"@opentelemetry/sdk-trace-base": "^1.1.1",
"@opentelemetry/sdk-trace-node": "^1.10.0",
"@opentelemetry/semantic-conventions": "^1.1.1",
"archiver": "^5.3.1",
"axios": "^0.21.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"deepcopy": "^2.1.0",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.4.0",
"express-mongo-sanitize": "^2.2.0",
"file-type": "^16.5.4",
"jsonwebtoken": "^9.0.0",
"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",
"qrcode": "^1.5.1",
"short-uuid": "^4.2.2",
"simple-oauth2": "^5.0.0",
"typescript": "^4.9.5",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/archiver": "^5.3.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash.clonedeep": "^4.5.7",
"@types/node": "^16.18.16",
"@types/node-jose": "^1.1.10",
"@types/qrcode": "^1.5.0",
"@types/simple-oauth2": "^4.1.2",
"@types/unzipper": "^0.10.6",
"@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": "^8.12.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.4",
"ts-node": "^10.9.2",
"unzipper": "^0.10.14"
}
}