-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 820 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
{
"name": "exploring-prisma",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node src/index.js",
"build": "next build",
"start": "NODE_ENV=production node src/index.js",
"postgres:start": "docker run --name prisma-postgres -v `pwd`/prisma:/app/prisma -p 5432:5432 -e POSTGRES_PASSWORD=test -d postgres"
},
"keywords": [],
"author": "Tim Ermilov <yamalight@gmail.com> (http://codezen.net)",
"license": "MIT",
"devDependencies": {
"@prisma/cli": "^2.0.0",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.4.6"
},
"dependencies": {
"@prisma/client": "^2.0.0",
"fastify": "^2.14.1",
"fastify-cookie": "^3.6.1",
"fastify-session": "^4.0.0",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}