-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.18 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
{
"name": "fundable-be",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"typeorm": "tsx --env-file=.env node_modules/typeorm/cli.js -d src/config/persistence/data-source.ts",
"ensure-db": "tsx --env-file=.env src/scripts/ensure-db.ts",
"generate-migration": "tsx src/scripts/generate-migration.ts",
"run-migration": "yarn typeorm migration:run",
"revert-migration": "tsx typeorm migration:revert",
"dev": "tsx watch --env-file=.env src",
"build": "tsc -p tsconfig.build.json",
"pre-start": "node --env-file=.env dist/index.js",
"start": "node dist/index.js",
"test": "c8 --check-coverage --lines 90 --statements 90 --functions 90 node --import tsx --test",
"lint": "eslint --fix"
},
"c8": {
"include": [
"src/components/v1/campaign/**/*.ts",
"src/services/cairo/retry.ts",
"src/services/cairo/campaignFactory.client.ts",
"src/services/cairo/campaignFactory.mock.ts",
"src/appMiddlewares/jwtAuth.api.ts",
"src/utils/apiResponse.ts"
],
"exclude": [
"src/services/cairo/campaignFactory.starknet.ts",
"src/config/**",
"src/utils/logger.ts",
"src/**/entity.ts",
"src/types/**"
]
},
"keywords": [],
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"decimal.js": "^10.6.0",
"express": "^4.21.1",
"express-rate-limit": "^7.5.0",
"helmet": "^7.2.0",
"inversify": "^7.5.4",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.3",
"nodemailer": "^6.9.16",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"starknet": "^9.4.2",
"typeorm": "^0.3.20",
"ulidx": "^2.4.1",
"winston": "^3.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/ms": "^0.7.34",
"@types/node": "^22.9.0",
"c8": "^11.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "3.3.3",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.13.0"
}
}