-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.33 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.33 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@media-network/media-cdn",
"version": "2.0.0-rc",
"description": "Easy-integrated online service to create media real time from original media",
"main": "index.js",
"repository": "git@github.com:media-network/media-cdn.git",
"author": "LongLH <d@dapps.me>",
"license": "MIT",
"dependencies": {
"amqplib": "0.5.3",
"array-flatten": "2.1.2",
"aws-sdk": "2.392.0",
"body-parser": "1.18.3",
"debug": "4.1.1",
"deferred": "0.7.10",
"delay": "4.1.0",
"deserialize-error": "0.0.3",
"elasticsearch": "15.3.0",
"escape-string-regexp": "1.0.5",
"express": "4.16.4",
"fs-extra": "7.0.1",
"gifsicle": "4.0.1",
"got": "9.6.0",
"image-size": "0.7.1",
"imagemin": "6.1.0",
"imagemin-svgo": "7.0.0",
"mime": "2.4.0",
"mime-match": "1.0.2",
"minify-stream": "1.1.0",
"mongoose": "5.4.6",
"morgan": "1.9.1",
"ms": "2.1.1",
"multer": "1.4.1",
"node-fetch": "2.3.0",
"pify": "4.0.1",
"pngquant-bin": "5.0.1",
"safe-buffer": "5.1.2",
"serialize-error": "3.0.0",
"sharp": "0.21.3",
"shorthash": "0.0.2",
"superagent": "4.0.0",
"uglify-js": "3.3.12",
"uuid": "3.3.2"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-object-rest-spread": "7.3.1",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.3.1",
"@babel/runtime": "7.3.1",
"babel-plugin-module-resolver": "3.1.3",
"concurrently": "4.1.0",
"eslint": "5.12.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-security": "1.4.0",
"nodemon": "1.18.9",
"run.env": "1.1.0"
},
"scripts": {
"start": "NEW_RELIC_ENABLED=false concurrently --raw \"npm run dev:server\" \"npm run dev:worker\"",
"build": "babel ./src -d ./build",
"build:clean": "rm -rf ./build",
"dev:server": "run.env nodemon ./src/server --exec babel-node",
"dev:worker": "run.env nodemon ./src/workers --exec babel-node",
"staging:start": "concurrently \"npm run staging:server\" \"npm run staging:worker\"",
"staging:server": "cd build && node server/",
"staging:worker": "cd build && node workers/media/",
"lint": "eslint --ext js ./src",
"lint:watch": "nodemon --legacy-watch --watch ./src --ext js --exec \"npm run lint\""
}
}