-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "instaclone-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node server --delay 2s",
"migrate": "npx prisma migrate dev --preview-feature",
"studio": "npx prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justin-dongwook-jung/instaclone-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/justin-dongwook-jung/instaclone-backend/issues"
},
"homepage": "https://github.com/justin-dongwook-jung/instaclone-backend#readme",
"dependencies": {
"@graphql-tools/load-files": "^6.5.2",
"@graphql-tools/merge": "^8.2.1",
"@graphql-tools/schema": "^8.3.1",
"@prisma/client": "^3.6.0",
"apollo-server": "^3.5.0",
"apollo-server-core": "^3.5.0",
"apollo-server-express": "^3.5.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^15.7.2",
"graphql-upload": "^13.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"nodemon": "^2.0.15",
"prisma": "^3.6.0"
}
}