-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "gateways",
"version": "0.0.1",
"description": "Create a REST service (JSON/HTTP) for storing information about these Gateways and their associated devices.",
"main": "server.ts",
"scripts": {
"start": "npm run build && ts-node -r ts-node/register/transpile-only -r tsconfig-paths/register build/server.js",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc"
},
"keywords": [
"Nodejs",
"Express",
"Typescript"
],
"author": "@carlitorweb <https://github.com/carlitorweb>",
"license": "UNLICENSED",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"prisma": "^4.5.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@prisma/client": "^4.5.0",
"express": "^4.18.2"
}
}