forked from AlphaDev87/timba-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.12 KB
/
package.json
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "timba-api",
"version": "1.0.0",
"description": "Timba Api Server",
"private": true,
"authors": "Alpha-Dev",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"transpile": "tsc",
"prettify": "prettier --write \"src/**/*.{ts,js,json}\" \"__tests__/**/*.{ts,js,json}\"",
"lint": "eslint 'src/**/*.{ts,js}' '__tests__/**/*.{ts,js}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,js}' '__tests__/**/*.{ts,js}' --quiet",
"build": "cross-env NODE_ENV=production run-s prettify clean transpile",
"build:staging": "cross-env NODE_ENV=staging run-s prettify clean transpile",
"build:prod": "cross-env NODE_ENV=production run-s prettify clean transpile",
"start": "cross-env NODE_ENV=development run-s prettify lint & nodemon",
"start:staging": "cross-env NODE_ENV=staging node dist/src/index.js",
"start:prod": "cross-env NODE_ENV=production node dist/src/index.js",
"prisma:generate:dev": "cross-env NODE_ENV=development node prisma.generate.ts",
"prisma:generate:staging": "cross-env NODE_ENV=staging node prisma.generate.ts",
"prisma:generate:prod": "cross-env NODE_ENV=production node prisma.generate.ts",
"seed": "tsx src/db/seed.ts",
"test": "cross-env LOGGING_LEVEL=none NODE_ENV=test jest --runInBand --detectOpenHandles",
"watch": "tsc --watch",
"test:watchAll": "cross-env NODE_ENV=test jest --watchAll --runInBand --detectOpenHandles",
"service:start": "pm2 start ecosystem.config.js",
"service:reload": "pm2 reload ecosystem.config.js",
"service:startup": "pm2 startup",
"service:stop": "pm2 stop ecosystem.config.js",
"service:list": "pm2 list ecosystem.config.js",
"service:delete": "pm2 delete ecosystem.config.js",
"service:logs": "pm2 logs"
},
"keywords": [
"typescript",
"node",
"express",
"rest",
"api",
"server"
],
"dependencies": {
"@logtail/pino": "^0.4.21",
"@prisma/client": "^5.9.1",
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.3",
"cross-env": "^7.0.3",
"dotenv": "^16.3.2",
"express": "^4.19.2",
"express-validator": "^7.0.1",
"fast-xml-parser": "^4.4.0",
"helmet": "^6.2.0",
"http-status": "^1.7.3",
"jsonwebtoken": "^9.0.2",
"lodash-es": "^4.17.21",
"morgan": "^1.8.2",
"nodemailer": "^6.9.13",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pino": "^9.2.0",
"prisma": "^5.9.1",
"rate-limiter-flexible": "^5.0.0",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.2",
"rollup": "^4.12.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/bcrypt": "^5.0.0",
"@types/connect-timeout": "^0.0.36",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/http-status": "^1.1.2",
"@types/jest": "^29.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash-es": "^4.17.4",
"@types/module-alias": "^2.0.1",
"@types/morgan": "^1.7.32",
"@types/node": "^18.6.4",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/readline-sync": "^1.4.8",
"@types/supertest": "^2.0.12",
"@types/web-push": "^3.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.1",
"jest-watch-typeahead": "^2.0.0",
"module-alias": "^2.2.2",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"pm2": "^5.1.0",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.2",
"ts-node": "^10.2.0",
"tsc": "^2.0.3",
"tsconfig-paths": "^4.1.0",
"tslint": "^6.1.3",
"tsx": "^4.7.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 16.0.0"
}
}