-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 894 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 894 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
37
38
{
"name": "apollo-server-tutorial",
"version": "0.1.0",
"main": "app.js",
"license": "MIT",
"author": {
"name": "koheitakumi"
},
"repository": {
"type": "git",
"url": "https://github.com/koheitakumi/apollo-server-tutorial.git"
},
"scripts": {
"dev": "node ./app.js",
"prod:start": "pm2 start pm2.config.js",
"prod:status": "pm2 status",
"prod:kill": "pm2 kill"
},
"dependencies": {
"apollo-datasource": "^0.7.2",
"apollo-datasource-rest": "^0.9.3",
"apollo-server-express": "^2.15.1",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^8.13.0",
"graphql-tools": "^6.0.12",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.1",
"lodash": "^4.17.19",
"objection": "^2.2.1",
"pg": "^8.3.0",
"pm2": "^4.4.0"
},
"devDependencies": {
"cross-fetch": "^3.0.5"
}
}