-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "basic-fs",
"author": "Parellin Technologies LLC",
"version": "1.3.0",
"description": "BasicFS is a very simple file storage API for your computer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Parellin-Technologies-LLC/basic-fs.git"
},
"main": "index.js",
"scripts": {
"build": "docker build -t basicfs .",
"cleanInstall": "rm -rf node_modules/ package-lock.json && npm i",
"dev": "nodemon ./index.js",
"lint": "eslint .",
"start": "node index.js",
"test": "mocha"
},
"dependencies": {
"body-parser": "1.18.3",
"express": "^4.16.2",
"express-basic-auth": "^1.1.5",
"formidable": "^1.1.1",
"fs-extra": "^5.0.0",
"gonfig": "1.0.7",
"http-response-class": "^1.1.4",
"mime-types": "2.1.19",
"on-finished": "^2.3.0",
"uuid": "3.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^3.0.0",
"eslint": "4.19.1",
"mocha": "^4.1.0",
"nodemon": "1.18.3"
},
"nodemonConfig": {
"ignore": [
"data/*"
]
}
}