-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 919 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 919 Bytes
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
{
"name": "express-and-prisma",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only ./src/app.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krysik/express-and-prisma.git"
},
"author": "Marcin Krysiński",
"license": "ISC",
"bugs": {
"url": "https://github.com/Krysik/express-and-prisma/issues"
},
"homepage": "https://github.com/Krysik/express-and-prisma#readme",
"dependencies": {
"@prisma/client": "^2.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@prisma/cli": "^2.11.0",
"@types/express": "^4.17.9",
"@types/node": "^14.14.7",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
},
"prisma": {
"schema": "prisma/schema.prisma"
}
}