-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.16 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": "rybble-users-service",
"version": "1.0.0",
"description": "Users 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-users.git"
},
"author": "Brandon G. Elzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/belzy/rybble-users/issues"
},
"homepage": "https://github.com/belzy/rybble-users#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": {
"@prisma/client": "^3.11.1",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"body-parser": "^1.20.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"prisma": "^3.11.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"mocha": {
"require": [
"ts-node/register"
],
"recursive": true,
"extension": [
"ts",
"js"
]
}
}