-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "rybble-gateway",
"version": "1.0.0",
"description": "API Gateway 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-gateway.git"
},
"author": "Brandon G. Elzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/belzy/rybble-gateway/issues"
},
"homepage": "https://github.com/belzy/rybble-gateway#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",
"mocha": "^9.2.2",
"nodemon": "^2.0.15"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"express": "^4.17.3",
"mongoose": "^6.2.9",
"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"
]
}
}