-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
89 lines (89 loc) · 2.98 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
{
"name": "liquid",
"version": "1.0.0",
"description": "Seamless and highly customizable authentication and user management server.",
"main": "index.js",
"type": "module",
"browserslist": "> 0.25%, not dead",
"scripts": {
"test": "mocha -r tsx 'test/integration/**/*.spec.ts' --exit --recursive --require test/integration/tester.spec.ts",
"start": "concurrently \"nodemon --inspect\" \"npx babel --watch ./src/public/components --out-dir ./src/public/compiled --presets @babel/preset-react\"",
"build": "npm run build:server && npm run build:static",
"copy-files": "copyfiles -u 1 \"src/**/*.yaml\" \"src/**/*.html\" \"src/**/*.json\" \"src/VERSION\" build/ && npm run copy-package-json",
"copy-package-json": "copyfiles \"package.json\" build/",
"build:server": "rimraf ./build && tsc && npm run copy-files",
"build:static": "gulp static_build",
"pretty": "prettier --write \"./**/*.{js,ts,json}\""
},
"keywords": [],
"author": "Shrihari Prakash",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@types/amqplib": "^0.10.5",
"@types/bcrypt": "^5.0.0",
"@types/chai-http": "^4.2.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/express-session": "^1.18.0",
"@types/express-validator": "^3.0.0",
"@types/mocha": "^10.0.7",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/node": "^20.14.11",
"@types/nodemailer": "^6.4.15",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth20": "^2.0.16",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^10.0.0",
"chai": "^4.4.1",
"chai-http": "^4.3.0",
"copyfiles": "^2.4.1",
"del": "^7.1.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-debug": "^5.0.1",
"gulp-replace": "^1.1.4",
"mocha": "^10.6.0",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.616.0",
"@aws-sdk/s3-request-presigner": "^3.616.0",
"@node-oauth/oauth2-server": "^5.0.0",
"@sendgrid/mail": "^8.1.3",
"amqplib": "^0.10.4",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"concurrently": "^8.1.0",
"connect-redis": "^7.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"express-session": "^1.17.3",
"express-validator": "^7.1.0",
"ioredis": "^5.4.1",
"moment": "^2.29.4",
"mongoose": "^8.5.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nanoid": "^5.0.7",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pino": "^9.3.1",
"pino-pretty": "^11.2.1",
"rate-limit-redis": "^4.0.0",
"unique-username-generator": "^1.3.0",
"uuid": "^10.0.0"
}
}