-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.63 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.63 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
{
"name": "saving-satoshi-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:saving-satoshi/saving-satoshi-backend.git",
"author": "The Bitcoin Dev Project (https://bitcoindevs.xyz)",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"build": "npm run clean && tsc && npm run copy-files",
"lint": "eslint .",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/languages/**/* dist/",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"db:generate": "npx prisma generate",
"db:migrate:dev": "npx prisma migrate dev --name update",
"db:migrate:production": "npx prisma migrate deploy",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"test:performance": "cross-env NODE_ENV=test PORT=8001 node dist/index.js"
},
"_moduleAliases": {
"lib": "dist/lib",
"middleware": "dist/middleware",
"models": "dist/models",
"routes": "dist/routes",
"types": "dist/types",
"config": "dist/config"
},
"lint-staged": {
"**/*.{js,ts}": "prettier --write"
},
"dependencies": {
"@prisma/client": "5.2.0",
"@types/dockerode": "^3.3.31",
"@types/node-cron": "^3.0.11",
"@types/tar": "^6.1.13",
"@types/uuid": "^10.0.0",
"ansi-to-html": "^0.7.2",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dockerode": "^4.0.2",
"dotenv": "^17.0.1",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"node-cron": "^3.0.3",
"pg": "^8.9.0",
"tar": "^7.4.3",
"uuid": "^9.0.0",
"winston": "^3.16.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.17",
"@types/jest": "29.5.12",
"@types/module-alias": "^2.0.4",
"@types/node": "^20.5.2",
"@types/supertest": "^2.0.12",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"jest": "29.7.0",
"prettier": "2.8.4",
"prisma": "5.2.0",
"rimraf": "^5.0.1",
"supertest": "^7.1.1",
"ts-jest": "29.1.2",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"typescript": "^5.1.6"
}
}