This repository has been archived by the owner on Jan 17, 2022. It is now read-only.
forked from cityofasheville/open-referral-gql-api-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
59
60
{
"name": "open-referral-gql-api",
"version": "1.0.0",
"description": "GraphQL API for Open Referral",
"main": "server.js",
"scripts": {
"start": "nodemon ./index.js --exec babel-node",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityofasheville/open-referral-gql-api.git"
},
"keywords": [
"Open Referral",
"GraphQL"
],
"author": "Eric Jackson",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cityofasheville/open-referral-gql-api/issues"
},
"homepage": "https://github.com/cityofasheville/open-referral-gql-api#readme",
"dependencies": {
"apollo-server": "^2.0.0-rc.7",
"apollo-server-express": "^2.0.0-rc.7",
"bunyan": "^1.8.12",
"coa-node-logging": "^2.0.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"graphql": "^0.13.2",
"lodash": "^4.17.10",
"mssql": "^3.3.0",
"pg": "^7.4.3",
"pg-pool": "^2.0.3",
"uuid": "^3.3.2"
},
"optionalDependencies": {
"msnodesqlv8": "^0.6.7"
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0-beta.6",
"babel-plugin-inline-import": "^2.0.1",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.5.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-import": "^1.1.0",
"eslint-plugin-react": "^4.2.3",
"faker": "^4.1.0",
"nodemon": "^1.9.1"
}
}