-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.5 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
{
"name": "apollo-graphql-server-starter",
"version": "0.1.0",
"description": "A graphql server using apollo graphql server",
"main": "index.js",
"scripts": {
"start": "nodemon -e js,graphql -x node src/index.js",
"debug": "nodemon -e js,graphql -x node --inspect src/index.js",
"playground": "graphql playground --dotenv variables.env",
"dev": "npm-run-all --parallel debug playground",
"seed": "node src/seed/seed.js",
"blowitallaway": "node src/seed/seed.js --delete",
"email": "echo \"you must have pug-cli installed globally to convert all the pug template to html!NB Always change the templates/email-template-name\" && pug -w src/mail/templates/confirmed_email_subscriber.pug -o src/mail/html",
"test:email": "node src/mail/templates/test-email.js"
},
"keywords": [
"graphql",
"apollo"
],
"author": "Oluwasetemi <[email protected]>",
"license": "ISC",
"dependencies": {
"altair-express-middleware": "^2.5.2",
"apollo-server-express": "^2.14.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-cli": "^4.0.0",
"graphql-playground-middleware-express": "^1.7.15",
"html-to-text": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"juice": "^6.0.0",
"mongoose": "^5.9.18",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"pug": "^3.0.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"remark-preset-lint-recommended": "^5.0.0",
"vfile-reporter": "^6.0.1"
}
}