-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 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
75
76
77
78
{
"name": "bookplayer-api",
"version": "0.1.0",
"description": "Bookplayer-api",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node ./dist/main.js\"",
"lint": "eslint src --ext .js,.ts",
"build": "tsc -b",
"setup_env": "node scripts/env.js",
"prod": "NODE_ENV=production node dist/main.js"
},
"keywords": [
"booklpayer ios backend"
],
"author": "yamilnunez",
"license": "ISC",
"dependencies": {
"@apple/app-store-server-library": "^2.0.0",
"@aws-sdk/client-s3": "^3.992.0",
"@aws-sdk/s3-request-presigner": "^3.992.0",
"@simplewebauthn/server": "^11.0.0",
"@types/jsonwebtoken": "^9",
"aws-sdk": "^2.1399.0",
"axios": "^1",
"body-parser": "^1.20",
"compression": "^1.7.4",
"cookie": "^0.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"env-schema": "^3.5.2",
"express": "^4.21",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^8.2.1",
"express-validation": "^3.0.8",
"fluent-json-schema": "^3.0.1",
"helmet": "^8",
"http-status": "^1.5.0",
"jsonwebtoken": "^9",
"knex": "^3",
"moment-timezone": "^0.5.46",
"nodemailer": "^6.9.14",
"pg": "^8.7.3",
"rate-limit-redis": "^4.3.1",
"redis": "^4.3.0",
"semver": "^7.7.2",
"ts-node": "^10.5.0",
"verify-apple-id-token": "^3.1.2",
"winston": "^3.9.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie": "^1.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.0",
"@types/node": "^17.0.16",
"@types/nodemailer": "^6.4.15",
"@types/semver": "^7.7.0",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7",
"prettier": "^2.5.1",
"supertest": "^6.3.0",
"ts-jest": "^29.1.0",
"tsc-watch": "^4.6.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}