-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.43 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.43 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
{
"name": "shade_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node src/server.js",
"dev": "tsx watch src/server.ts",
"migration:generate": "typeorm-ts-node-commonjs migration:generate -d src/config/database.ts",
"migration:run": "typeorm-ts-node-commonjs migration:run -d src/config/database.ts",
"migration:revert": "typeorm-ts-node-commonjs migration:revert -d src/config/database.ts",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"check": "npm run format:check && npm run lint:check && tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"test": "NODE_ENV=test DATABASE_URL='postgresql://postgres:postgres@localhost:5432/postgres?schema=public' NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_ENV=test DATABASE_URL='postgresql://postgres:postgres@localhost:5432/postgres?schema=public' NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_ENV=test DATABASE_URL='postgresql://postgres:postgres@localhost:5432/postgres?schema=public' NODE_OPTIONS='--experimental-vm-modules' jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^7.4.0",
"@stellar/stellar-sdk": "^14.5.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"pg": "^8.14.1",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.22"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.11",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"jest": "^30.2.0",
"jest-mock-extended": "^4.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"prisma": "^7.4.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
}
}