forked from gurolayanlar/javascript-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "javascript-project-template",
"version": "1.0.0",
"description": "Using NodeJS, ExpressJS, GraphQL, Apollo Server/Client, MongoDB, ReactJS",
"main": "server/index.js",
"scripts": {
"debug": "concurrently \"nodemon --inspect-brk server\" \"node client/ start\"",
"start": "concurrently \"nodemon server/\" \"node client/ start\"",
"build": "node client build",
"prepare": "node client install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gurolayanlar/javascript-project-template.git"
},
"keywords": [
"NodeJS",
"ExpressJS",
"GraphQL",
"Apollo Server",
"Apollo Client",
"MongoDB",
"ReactJS"
],
"author": "Gürol Ayanlar <gurolayanlar@gmail.com>",
"contributors": [
{
"name": "Özgün Özdemir",
"email": "ozgunozdemir92@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gurolayanlar/javascript-project-template/issues"
},
"homepage": "https://github.com/gurolayanlar/javascript-project-template#readme",
"dependencies": {
"apollo-server-express": "^2.9.12",
"compression": "^1.7.4",
"connect-redis": "^4.0.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql": "^14.5.8",
"graphql-import": "^0.7.1",
"helmet": "^3.21.2",
"lodash": "^4.17.15",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"mongoose": "^5.7.13",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"redis": "^2.8.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.3.0"
},
"devDependencies": {
"concurrently": "^5.0.0",
"nodemon": "^2.0.1"
}
}