-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.33 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
{
"name": "@alien-worlds/aw-api-leaderboard",
"version": "0.0.1",
"description": "",
"packageManager": "[email protected]",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Alien-Worlds/aw-api-leaderboard.git"
},
"files": [
"build"
],
"scripts": {
"test:unit": "jest --config=jest.config.unit.js",
"clean": "rm -rf ./build",
"build": "yarn clean && tsc -b",
"start": "node -r dotenv/config -r newrelic build/index.js",
"archive": "node build/archive/index.js",
"start:local": "yarn build && node -r dotenv/config -r newrelic build/index.js",
"prepublish": "yarn clean && tsc --project tsconfig.build.json",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"format-check": "prettier --check \"src/\"",
"format": "prettier --write \"src/\"",
"docs:generate": "p2o ./postman/leaderboard-api.postman_collection.json -f ./docs/leaderboard-api-oas.yaml -o ./docs/config-oas.json"
},
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^27.0.3",
"@types/newrelic": "^9.13.0",
"@types/node": "^18.7.14",
"@types/node-fetch": "2.x",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.5",
"prettier": "^2.7.1",
"ts-jest": "^27.1.3",
"typescript": "^4.8.2"
},
"dependencies": {
"@alien-worlds/aw-api-common-leaderboard": "^0.0.21",
"@alien-worlds/aw-core": "^0.0.21",
"@alien-worlds/aw-storage-mongodb": "^0.0.16",
"@alien-worlds/aw-storage-redis": "^0.0.7",
"@types/cron": "^2.0.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/ms": "^0.7.31",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cron": "^2.3.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"ms": "^2.1.3",
"nanoid": "^3.0.0",
"newrelic": "^10.1.0",
"node-fetch": "2.6.6",
"postman-to-openapi": "^3.0.1",
"redis": "^4.6.5",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.6.3",
"ts-node": "^10.9.1",
"ws": "^8.12.0",
"yaml": "^2.2.2"
}
}