forked from Pauljanson002/CustomerServiceApplicationAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "customer_service_application",
"version": "1.0.0",
"description": "Customer Service Application : Get It Done",
"main": "src/index.js",
"scripts": {
"start": "nodemon index.js",
"dev": "nodemon index.js",
"seed": "node ./util/seed/index.js",
"lint": "eslint \"src/**/*.js\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Pauljanson002/CustomerServiceApplicationAPI.git"
},
"nodemonConfig": {
"ignore": [
"**.test.js"
]
},
"keywords": [],
"author": "Adam Scott",
"license": "MIT",
"dependencies": {
"apollo-server": "^3.1.2",
"apollo-server-express": "^3.0.2",
"bcrypt": "^5.0.1",
"cors": "2.8.5",
"dotenv": "6.1.0",
"express": "4.16.4",
"express-session": "1.15.6",
"graphql": "^14.1.1",
"graphql-depth-limit": "1.1.0",
"graphql-iso-date": "3.6.1",
"graphql-validation-complexity": "0.2.4",
"helmet": "3.21.2",
"i18next": "^20.6.1",
"jsonwebtoken": "8.5.1",
"marked": "0.7.0",
"md5": "2.2.1",
"mongoose": "^5.13.3",
"multer": "^1.4.3",
"nodemon": "^2.0.12",
"passport": "0.4.0",
"passport-github2": "0.1.11"
},
"devDependencies": {
"@jest/globals": "^27.0.6",
"eslint": "5.13.0",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-prettier": "3.0.1",
"faker": "4.1.0",
"jest": "^27.0.6",
"node-fetch": "^2.6.1",
"prettier": "1.18.2"
}
}