-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "cumulonimbus-api",
"version": "5.2.0",
"description": "The API for Cumulonimbus.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ENV=development node --no-warnings=ExperimentalWarning --watch --loader ts-node/esm ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlekEagle/cumulonimbus-api.git"
},
"author": "Alek Evans",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlekEagle/cumulonimbus-api/issues"
},
"homepage": "https://github.com/AlekEagle/cumulonimbus-api#readme",
"devDependencies": {
"@simplewebauthn/types": "^11.0.0",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.1.3"
},
"dependencies": {
"@otplib/preset-default-async": "^12.0.1",
"@simplewebauthn/server": "^11.0.0",
"bcrypt": "^5.1.0",
"chalk": "^5.2.0",
"compression": "^1.7.4",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"file-type": "^18.5.0",
"jose": "^4.14.4",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"node-device-detector": "^2.0.14",
"nodemailer": "^6.9.7",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.0"
}
}