-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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": "icepick",
"version": "0.0.1",
"description": "File upload and manipulation service for Openclub",
"main": "./express/server.build.js",
"scripts": {
"local": "babel-node ./express/server.js",
"build": "webpack --colors --progress --config ./config/webpack.config.babel.js",
"start": "node ./build/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenClubDev/icepick.git"
},
"keywords": [
"openclub",
"image",
"uploading"
],
"author": "Openclub",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/OpenClubDev/icepick/issues"
},
"homepage": "https://github.com/OpenClubDev/icepick#readme",
"dependencies": {
"aws-sdk": "2.14.0",
"body-parser": "1.16.1",
"cors": "2.8.1",
"debug": "2.6.1",
"express": "4.14.1",
"express-jwt": "5.1.0",
"gm": "1.23.0",
"jsonwebtoken": "7.3.0",
"multer": "1.3.0"
},
"devDependencies": {
"babel-cli": "6.23.0",
"babel-loader": "6.3.2",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-latest": "6.22.0",
"babel-root-slash-import": "1.1.0",
"webpack": "2.2.1",
"webpack-node-externals": "1.5.4"
}
}