-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 925 Bytes
/
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
{
"name": "seamless-auth",
"version": "3.9.1",
"description": "A full fledged authentication system...",
"type": "commonjs",
"main": "file.js",
"scripts": {
"start": "node test/test.js",
"test": "npx jest --forceExit *.test.js"
},
"bugs": {
"url": "https://github.com/MattPlayGamez/auth/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/MattPlayGamez/auth"
},
"extensionsToTreatAsEsm": [
".js"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.3",
"qrcode": "^1.5.4",
"speakeasy": "^2.0.0",
"uniqid": "^5.4.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0"
}
}