forked from jsperlong/apollo-server-express-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.94 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
58
59
60
61
62
{
"name": "skeleton-apollo-server-express",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js --exec babel-node -e js",
"initdb": "babel-node src/scripts/init-db.js",
"initSecurity": "babel-node src/modules/security/scripts/init-security.js",
"rootRecover": "babel-node src/modules/security/scripts/root-recover.js",
"initCustom": "babel-node src/modules/customization/scripts/init-customization.js",
"build": "./node_modules/.bin/babel src -d dist --copy-files && ./node_modules/.bin/babel emails -d dist/emails --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skeleton-metal/apollo-server-express.git"
},
"keywords": [
"skeleton",
"apollo",
"server",
"express"
],
"author": "Cristian Incarnato",
"license": "ISC",
"bugs": {
"url": "https://github.com/skeleton-metal/apollo-server-express/issues"
},
"homepage": "https://github.com/skeleton-metal/apollo-server-express#readme",
"dependencies": {
"apollo-server-express": "^2.9.6",
"bcryptjs": "^2.4.3",
"dotenv": "^8.1.0",
"email-templates": "^6.0.3",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"express-jwt": "^5.3.1",
"graphql": "^14.5.8",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.7.0",
"mongoose": "^5.7.3",
"mongoose-softdelete": "^1.0.0",
"mongoose-paginate-v2": "^1.3.6",
"mongo-cursor-pagination": "^7.2.0",
"saslprep": "^1.0.3",
"mongoose-unique-validator": "^2.0.3",
"nodemailer": "^6.3.1",
"nodemailer-pug-engine": "^1.0.1",
"nodemon": "^1.19.4",
"winston": "^3.2.1",
"node-device-detector": "^1.2.1",
"geoip-lite": "^1.4.1"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"@babel/core": "^7.8.7",
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.8.7"
}
}