-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "image-service",
"version": "2.0.0",
"description": "Service for storing images",
"main": "src/index.js",
"scripts": {
"start": "babel-node ./src/index.js",
"build": "babel src -d lib --source-maps",
"start:prod": "node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppDevelopmentShop/image-service.git"
},
"keywords": [
"files",
"service",
"image"
],
"author": "AppDevelopmentShop",
"license": "MIT",
"bugs": {
"url": "https://github.com/AppDevelopmentShop/image-service/issues"
},
"homepage": "https://github.com/AppDevelopmentShop/image-service#readme",
"dependencies": {
"app-root-path": "^2.1.0",
"joi": "^13.4.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"random-number-csprng": "^1.0.2",
"sharp": "^0.20.5",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-node8": "^1.2.0",
"eslint": "^5.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
}
}