-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "coffee-port-server",
"version": "1.0.0",
"description": "this is server app for coffee-port",
"main": "index.js",
"scripts": {
"serve": "node src/index",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuildForSDGCohort2/coffee-port-server.git"
},
"keywords": [],
"author": "Amanuel Ewnetu, Benyam Seifu, Daniel Araya, Firi Brehane, Yabsra Abhdurahaman,",
"license": "ISC",
"bugs": {
"url": "https://github.com/BuildForSDGCohort2/coffee-port-server/issues"
},
"homepage": "https://github.com/BuildForSDGCohort2/coffee-port-server#readme",
"dependencies": {
"@sendgrid/mail": "^7.2.6",
"apollo-server": "^2.16.1",
"apollo-server-express": "^2.17.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-resolvers": "^0.4.2",
"graphql-tag": "^2.11.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.5",
"nodemon": "^2.0.4"
}
}