forked from nxcd/niffler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "niffler",
"version": "1.3.0",
"description": "A minio based storage microservice",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./dist",
"test": "echo \"Error: No test specified\" && exit 0",
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"build:debug": "npm run clean && npm run build -- --sourceMap",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w",
"build:start": "npm run build:clean && npm start",
"start": "node dist/index.js",
"start:debug": "concurrently -s all \"tsc -w\" \"DEBUG=expresso:*,niffler:* nodemon dist/index.js\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"engines": {
"node": ">=8.11.0",
"pnpm": ">=2.0.0",
"npm": ">5.0.0"
},
"repository": {
"type": "git",
"url": "git@gitlab.nxcd.com.br:nxcd/niffler.git"
},
"author": "Caio Delgado <caiodelgado.csd@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/busboy": "^0.2.3",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.119",
"@types/node": "^10.14.4",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.2"
},
"dependencies": {
"@expresso/app": "^1.1.1",
"@expresso/errors": "^1.3.0",
"@expresso/server": "^1.1.3",
"@nxcd/paradox": "^2.8.3",
"@types/mime-types": "^2.1.0",
"@types/multer": "^1.3.7",
"@types/multer-s3": "^2.7.6",
"@types/uuid": "^3.4.4",
"aws-sdk": "^2.388.0",
"busboy": "^0.3.0",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"express-rescue": "^1.1.22",
"lodash": "^4.17.11",
"mime-types": "^2.1.21",
"sugar-env": "^1.5.7",
"uuid": "^3.3.2"
}
}