-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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": "giftbasket-server",
"version": "1.0.0",
"description": "Backend for final project, utilizing graphql",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"engines": {
"node": "13.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melissay94/giftbasket.git"
},
"keywords": [
"graphql"
],
"author": "Melissa Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/melissay94/giftbasket/issues"
},
"homepage": "https://github.com/melissay94/giftbasket#readme",
"dependencies": {
"apollo-server-express": "^2.11.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dataloader-sequelize": "^2.1.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"graphql": "^15.0.0",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.0.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.6",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"eslint": "^6.8.0"
}
}