-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "intellipill-api",
"version": "0.0.1",
"engines": {
"node": "7.x"
},
"description": "IntelliPill is a pill identification service.",
"keywords": [
"pill",
"detection",
"vision",
"processing"
],
"author": [
"Emily Engle <[email protected]>",
"Josh Kuehn <[email protected]>",
"Kevin Unkrich <[email protected]>",
"Kyle Thompson <[email protected]>"
],
"license": "MIT",
"scripts": {
"lint": "esw . --ext .js --color",
"server:dev": "NODE_ENV=development nodemon server",
"start": "npm run server:dev"
},
"main": "server/index.js",
"repository": {
"type": "git",
"url": "github.com/BuckeyeHackers/intellipill-api"
},
"dependencies": {
"@google-cloud/vision": "^0.5.0",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.7.0",
"multer": "^1.2.0"
},
"devDependencies": {
"dotenv": "^2.0.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"eslint-watch": "^2.1.14",
"nodemon": "^1.10.2"
}
}