-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 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
{
"name": "rybble-auth-service",
"version": "1.0.0",
"description": "Authentication service for the Rybble application",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "ts-node --transpile-only index.ts",
"dev": "nodemon index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belzy/rybble-auth.git"
},
"author": "Brandon G. Elzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/belzy/rybble-auth/issues"
},
"homepage": "https://github.com/belzy/rybble-auth#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-http": "^4.2.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"dotenv": "^16.0.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.15"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"body-parser": "^1.20.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"mocha": {
"require": [
"ts-node/register"
],
"recursive": true,
"extension": [
"ts",
"js"
]
}
}