-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "upload_server",
"version": "1.0.0",
"description": "This project represents an object storage API",
"main": "server.js",
"scripts": {
"start": "nodemon src/server.js --exec babel-node --presets babel-preset-env",
"compile": "babel src --out-dir .compiled --source-maps --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Nitzan-Tal",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"eslint": "^5.14.1",
"express": "^4.16.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express-fileupload": "^1.1.1-alpha.3",
"jwt-decode": "^2.2.0",
"jwt-simple": "^0.5.5",
"mkdirp": "^0.5.1",
"mongodb": "^3.1.13",
"password-generator": "^2.2.0"
},
"babel": {
"presets": [
"es2015"
]
}
}