-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "pcsx2-webapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "ts-node -r dotenv/config index.ts",
"build": "tsc -p .",
"start": "node -r dotenv/config ./dist/index.js dotenv_config_path=./.env",
"format": "npx prettier --write .",
"lint": "npx eslint ./"
},
"engines": {
"node": "16.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/graphql": "^4.8.0",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^3.5.2",
"@octokit/rest": "^18.12.0",
"@octokit/types": "^6.31.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1",
"striptags": "^3.2.0",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-loki": "^6.0.3"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"prettier": "2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}