-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"type": "module",
"name": "backend",
"version": "1.0.0",
"description": "mujhub backend",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"start-prod": "ENV=prod babel-node index.js",
"lint": "eslint \"**/*.js\" --ignore-pattern node_modules/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mujhub/backend.git"
},
"bugs": {
"url": "https://github.com/mujhub/backend/issues"
},
"homepage": "https://github.com/mujhub/backend#readme",
"dependencies": {
"@graphql-tools/merge": "^6.2.7",
"@graphql-tools/schema": "^7.1.2",
"apollo-server-express": "^2.19.0",
"app-root-path": "^3.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-tools": "^4.0.8",
"mongoose": "^5.11.8",
"morgan": "1.10.0",
"nodemon": "^2.0.7",
"winston": "^3.3.3"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-env": "^1.5.2",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1"
}
}