-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 994 Bytes
/
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
{
"name": "apollo-api-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for an Apollo server with sequelize",
"main": "index.js",
"author": "Joey <joe@joecode.site>",
"scripts": {
"dev": "nodemon index.js",
"prod": "node index.js",
"seq": "sequelize",
"lint": "eslint --fix ."
},
"nodemonConfig": {
"watch": [
".env",
"."
],
"ext": "js,mjs,json,graphql,gql"
},
"dependencies": {
"apollo-server-express": "^2.22.2",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"graphql": "^15.5.0",
"helmet": "^4.4.1",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.6.2",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-narkoleptika": "^3.0.0",
"nodemon": "^2.0.7"
}
}