-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.54 KB
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
52
53
54
55
56
57
{
"name": "StudyRoomService",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"dev": "nodemon --exec babel-node src/server --delay 2",
"migrate": "npx prisma migrate dev -- preview-feature",
"studio": "npx prisma studio",
"build": "babel src --out-dir build",
"start": "node build/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-jiseok/StudyRoomService.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dev-jiseok/StudyRoomService/issues"
},
"homepage": "https://github.com/dev-jiseok/StudyRoomService#readme",
"dependencies": {
"@babel/cli": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@prisma/client": "^3.3.0",
"apollo-server": "^3.4.0",
"apollo-server-express": "^2.25.2",
"aws-sdk": "^2.1037.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"graphql": "^15.7.0",
"graphql-request": "^3.7.0",
"graphql-tools": "^7.0.5",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.2",
"nodemailer-sendgrid-transport": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"nodemon": "^2.0.14",
"prisma": "^3.3.0"
},
"resolutions": {
"fs-capacitor": "^6.2.0",
"graphql-upload": "^11.0.0"
}
}