-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
89 lines (89 loc) · 2.66 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
{
"name": "steam-microtransaction-api",
"version": "2.0.1",
"description": "An intermediate api to handle steam microtransactions using steam web services.",
"main": "./src/entrypoint.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc",
"build:doc": "apidoc -i src/ -o docs/",
"dev": "cross-env NODE_ENV=development nodemon --watch \"src/\" --exec \"ts-node -r tsconfig-paths/register ./src/entrypoint.ts\" -e ts",
"start": "ts-node -r tsconfig-paths/register ./src/entrypoint.ts",
"test": "cross-env NODE_ENV=test jest --ci --verbose --silent=false --detectOpenHandles --forceExit",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"release": "release-it --git.requireBranch=main --no-npm.publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasielmacedo/steam-microtransaction-api.git"
},
"keywords": [
"typescript",
"steam",
"microtransactions",
"api"
],
"author": "Jasiel Macedo",
"license": "ISC",
"bugs": {
"url": "https://github.com/jasielmacedo/steam-microtransaction-api/issues"
},
"homepage": "https://github.com/jasielmacedo/steam-microtransaction-api#readme",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@types/node": "^22.7.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"hpp": "^0.2.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"winston": "^3.15.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@jest-mock/express": "^2.1.0",
"apidoc": "^0.54.0",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-module-resolver": "^1.2.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^2.2.1",
"release-it": "^17.8.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
}
},
"resolutions": {
"@types/express": "^4.17.11"
}
}