-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.06 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
{
"name": "recipe-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"prebuild": "TZ=UTC bun ./scripts/prebuild.js",
"prebuild:bun": "TZ=UTC bun ./scripts/prebuild-bun.js",
"build": "TZ=UTC tsc && tsc-alias",
"build:bun": "NODE_ENV=production TZ=UTC bun ./build.ts",
"start": "TZ=UTC bun dist/index.js",
"start:bun": "TZ=UTC bun ./out/index.js",
"dev": "TZ=UTC ts-node -r tsconfig-paths/register index.ts",
"watch": "nodemon --watch src --exec TZ=UTC ts-node index.ts",
"dev:bun": "bun --hot run index.ts",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\" index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.354.0",
"@aws-sdk/client-s3": "^3.540.0",
"@types/mongoose": "^5.11.97",
"amazon-cognito-identity-js": "^6.2.0",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-openid-connect": "^2.16.0",
"express-session": "^1.17.3",
"express-winston": "^4.2.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"jwk-to-pem": "^2.0.5",
"jwks-rsa": "^3.0.1",
"mongoose": "^7.1.1",
"multer": "^1.4.5-lts.1",
"rimraf": "^5.0.5",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/bun": "^1.1.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jwk-to-pem": "^2.0.1",
"@types/multer": "^1.4.11",
"@types/node": "^20.1.4",
"@types/uuid": "^9.0.1",
"concurrently": "^8.0.1",
"git-rev-sync": "^3.0.2",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}