-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"name": "hermes",
"version": "1.1.12",
"description": "Socket microservice",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./dist",
"test": "npm run build && mocha test",
"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:*,gg:* 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@github.com:nxcd/hermes.git"
},
"author": "Lucas Santos <lucas.santos@nxcd.com.br>",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/mongodb": "^3.1.12",
"@types/node": "^10.11.6",
"concurrently": "^4.0.1",
"husky": "^1.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.1"
},
"dependencies": {
"@expresso/expresso": "^0.15.0",
"deepstream.io-client-js": "^2.3.0",
"express-rescue": "^1.1.5",
"sugar-env": "^1.5.3"
}
}