forked from itsthatguy/avatars-api-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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": "adorable-avatars",
"version": "0.1.1",
"description": "",
"engines": {
"node": "9.4.x"
},
"scripts": {
"test": "mocha --exit",
"build": "babel src/ --out-dir=dist/ --copy-files",
"dev": "concurrently --kill-others --prefix=name --names=server,eslint --prefix-colors=green,magenta \"babel-watch --watch src src/server.js\" \"esw src/ --changed --watch\"",
"start": "babel-node src/server.js",
"start:prod": "node dist/server.js",
"heroku-postbuild": "npm run build",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "MIT",
"main": "dist/routes/avatars.js",
"dependencies": {
"colors": "^0.6.2",
"express": "^4.8.0",
"find-port": "^1.0.0",
"gm": "^1.16.0",
"serve-favicon": "^2.0.1",
"underscore": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/adorableio/adorable-avatars.git"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-watch": "^2.0.6",
"chai": "~1.9.1",
"concurrently": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-adorable": "^0.0.6",
"eslint-watch": "^3.1.2",
"mocha": "^5.0.5",
"supertest": "~0.13.0"
},
"eslintConfig": {
"extends": "eslint-config-adorable"
}
}