forked from ariesshrimp/humane-society-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "humane-society",
"version": "1.0.0",
"description": "GraphQL API to consume scraped data from the Oregon Humane Society.",
"main": "server/index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon node_modules/.bin/babel-node server",
"lint": "eslint . --fix --ignore-path .gitignore",
"start": "NODE_ENV=production babel-node server/index.js",
"test": "NODE_ENV=testing npm run lint && jest --forceExit --config ./jestCoverage.config.json",
"test:watch": "jest --watch --config ./jest.config.json"
},
"keywords": [
"graphql",
"humane society",
"oregon",
"api",
"node",
"graphiql"
],
"author": "Joseph Fraley",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"graphql": "^0.8.0",
"graphql-server-express": "^0.4.3",
"neo4j-driver": "^1.0.5",
"ramda": "^0.22.1",
"uuid": "^3.0.1",
"validator": "^6.2.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-runtime": "^6.20.0",
"eslint": "^3.11.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"jest": "^18.1.0",
"node-uuid": "^1.4.7",
"nodemon": "^1.11.0"
}
}