-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.21 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ironfish-api",
"version": "0.0.0",
"description": "HTTP server to interface with Iron Fish accounts",
"private": true,
"author": "Iron Fish <contact@ironfish.network> (https://ironfish.network)",
"repository": "iron-fish/ironfish",
"license": "MPL-2.0",
"homepage": "https://github.com/iron-fish/ironfish-api",
"engines": {
"node": ">=20"
},
"keywords": [
"api"
],
"scripts": {
"build": "tsc -b",
"clean": "rm -rf ./build",
"docker:start": "docker compose up -d",
"docker:stop": "docker compose down",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prestart": "bash bin/check_for_dotenv.sh",
"start": "node build/main.js",
"start:dev": "webpack --config webpack.config.js --watch",
"start:worker": "node build/worker.js",
"test:keepdb": "dotenv -o -e .env.test -- jest --runInBand",
"test": "tsc -b ./prisma/seed && dotenv -o -e .env.test -- prisma migrate reset --force --skip-generate > /dev/null && yarn test:keepdb",
"db:client:generate": "prisma generate",
"db:client:format": "prisma format",
"db:migrate": "prisma migrate dev",
"db:seed:testing": "tsc -b ./prisma/seed && SEED_TYPE=testing prisma db seed"
},
"prisma": {
"seed": "node build/prisma/seed/main.js"
},
"devDependencies": {
"@nestjs/testing": "8.4.7",
"@types/compression": "1.7.5",
"@types/express": "4.17.20",
"@types/faker": "5.5.9",
"@types/jest": "29.5.13",
"@types/passport": "1.0.14",
"@types/semver": "7.5.8",
"@types/supertest": "2.0.15",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"dotenv": "16.3.1",
"dotenv-cli": "7.3.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"faker": "5.5.3",
"jest": "29.7.0",
"prettier": "2.8.8",
"prisma": "5.20.0",
"run-script-webpack-plugin": "0.2.0",
"supertest": "7.0.0",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"typescript": "5.6.3",
"uuid": "10.0.0",
"webpack": "5.95.0",
"webpack-cli": "5.1.4",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"@influxdata/influxdb-client": "1.33.2",
"@nestjs/axios": "3.0.3",
"@nestjs/common": "8.4.7",
"@nestjs/config": "3.1.1",
"@nestjs/core": "8.4.7",
"@nestjs/microservices": "8.4.7",
"@nestjs/passport": "10.0.2",
"@nestjs/platform-express": "8.4.7",
"@nestjs/swagger": "5.2.1",
"@prisma/client": "5.20.0",
"@sindresorhus/is": "4.6.0",
"assert": "2.0.0",
"axios": "1.7.7",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"cluster": "0.7.7",
"compression": "1.7.4",
"dd-trace": "4.16.0",
"express": "4.21.1",
"graphile-worker": "0.14.0-rc.0",
"helmet": "8.0.0",
"hot-shots": "10.0.0",
"joi": "17.13.3",
"jsonwebtoken": "9.0.2",
"passport": "0.6.0",
"pino": "9.4.0",
"reflect-metadata": "0.1.13",
"rxjs": "7.8.1",
"semver": "7.6.3",
"swagger-ui-express": "5.0.0",
"type-fest": "4.32.0",
"ulid": "2.3.0"
}
}