This repository has been archived by the owner on Aug 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.57 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": "graphql-guc",
"version": "1.1.3",
"description": "Get your German University in Cairo (GUC) student info with GraphQL!",
"main": "src/app.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon src/app.js --exec babel-node",
"test": "jest --watch",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ar-maged/graphql-guc.git"
},
"author": "A.R. Maged <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ar-maged/graphql-guc/issues"
},
"homepage": "https://github.com/ar-maged/graphql-guc#readme",
"dependencies": {
"apollo-server-express": "^1.2.0",
"axios": "^0.17.1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"check-env": "^1.3.0",
"cors": "^2.8.4",
"express": "^4.16.2",
"graphql": "^0.11.7",
"graphql-playground-middleware-express": "^1.3.8",
"graphql-tools": "^2.12.0",
"moment": "^2.19.4",
"ramda": "^0.25.0",
"to-title-case": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.13.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"jest": "^22.0.5",
"lint-staged": "^6.0.0",
"morgan": "^1.9.0",
"nodemon": "^1.12.5",
"prettier": "^1.9.1"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
}
}