-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.75 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
{
"name": "games-api",
"version": "1.0.3",
"description": "Games API",
"main": "index",
"scripts": {
"postinstall": "if [ -f ./_prepare.sh ]; then ./_prepare.sh; fi",
"start": "node dist/index.js",
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules -r tsconfig-paths/register index.ts",
"build": "NODE_ENV=production tsc && tsc-alias",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.ts --max-warnings=10",
"lint:fix": "eslint --fix . --ext .js,.ts --max-warnings=10",
"typecheck": "NODE_ENV=test tsc --strict"
},
"author": "Pedro Darma",
"homepage": "https://github.com/pedrodarma/games-api#readme",
"dependencies": {
"axios": "^1.9.0",
"cors": "^2.8.5",
"cron": "^4.3.1",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"http": "^0.0.1-security",
"mongodb": "^6.20.0",
"node-cron": "^4.0.7",
"redis": "^5.1.1",
"ts-node": "^10.9.2",
"uuid": "^11.1.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^4.17.21",
"@types/node": "^24.10.1",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"bugs": {
"url": "https://github.com/pedrodarma/games-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrodarma/games-api.git"
},
"license": "ISC",
"engines": {
"node": "20.x"
}
}