-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "bonadocs-api",
"version": "1.0.0",
"private": true,
"description": "Bonadocs API",
"author": "Ahmad Alfawwaz",
"license": "Bonadocs Proprietary",
"main": "./dist/server.js",
"engines": {
"node": ">=20"
},
"repository": {
"type": "private",
"url": "https://github.com/bonadocs/api"
},
"prettier": "@bonadocs/prettier-config",
"scripts": {
"build": "rm -rf dist/ && tsc -p tsconfig.build.json",
"watch:build": "tsc -p tsconfig.build.json -w",
"start": "node --env-file=.env ./dist/server.js",
"dev": "tsc-watch --onSuccess 'node --env-file=.env -r ts-node/register ./src/localserver.ts'",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts{,x}\" --write",
"fix:lint": "eslint src --ext .ts --ext .tsx --fix",
"prepare": "husky",
"test": "jest",
"lint": "prettier -c \"src/**/*.ts{,x}\" && eslint src --ext .ts"
},
"dependencies": {
"@bonadocs/di": "^1.0.0",
"@bonadocs/logger": "^1.0.0",
"@paddle/paddle-node-sdk": "^2.7.0",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"ethers": "^6.13.5",
"express": "^4.21.2",
"express-validation": "^4.1.1",
"firebase-admin": "^13.0.2",
"helmet": "^7.2.0",
"http-status-codes": "^2.3.0",
"node-cron": "^3.0.3",
"pg": "^8.13.1",
"randomstring": "^1.3.0",
"reflect-metadata": "^0.2.2",
"routing-controllers": "^0.10.4",
"routing-controllers-openapi": "^4.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-dist": "^5.19.0",
"swagger-ui-express": "^5.0.1",
"typedi": "^0.10.0"
},
"devDependencies": {
"@bonadocs/eslint-config": "latest",
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/node": "^22.5.4",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.10",
"@types/randomstring": "^1.3.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"class-validator-jsonschema": "^5.0.1",
"dotenv": "^16.4.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2"
}
}