-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·48 lines (48 loc) · 1.23 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
{
"name": "github-profile-summary-backend",
"version": "1.0.0",
"description": "github-profile-summary backend",
"main": "dist/index.js",
"scripts": {
"dev": "node_modules/.bin/nodemon npm run start",
"start": "node index.js",
"pretest": "npm run lint",
"test": "NODE_ENV=test jest",
"lint-fix": "prettier --write src/**/*.js && prettier --write src/*.js && prettier --write __tests__/*.js",
"lint": "prettier src/**/*.js && prettier src/*.js"
},
"author": "Will Garcia",
"license": "ISC",
"dependencies": {
"apollo-boost": "^0.1.12",
"apollo-cache-inmemory": "^1.2.6",
"apollo-link-http": "^1.5.4",
"body-parser": "^1.18.3",
"celebrate": "^8.0.0",
"cors": "^2.8.4",
"cross-fetch": "^2.2.2",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"helmet": "^3.13.0",
"log4js": "^2.10.0",
"mailgun-js": "^0.21.0",
"mongoose": "^5.3.1",
"request-promise": "^4.2.2"
},
"devDependencies": {
"jest": "^23.5.0",
"nodemon": "^1.17.5",
"prettier": "^1.14.3",
"supertest": "^3.3.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"testMatch": [
"**/__tests__/*.+(js)"
]
}
}