This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.24 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "micro-service-template",
"version": "1.0.1",
"description": "Template de micro-service en Node.js",
"main": "src/server.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"heroku-postbuild": "npm run build",
"inspect": "nodemon --inspect src/server.ts",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts --fix src/",
"lint:fix-test": "eslint --ignore-path .gitignore --ext .ts --fix tests/",
"start": "tsc && node build/server.js",
"test": "jest",
"test:ci": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ma-residence/micro-service-template-js.git"
},
"author": "Ensembl",
"license": "PROPRIETARY",
"bugs": {
"url": "https://github.com/ma-residence/micro-service-template-js/issues"
},
"homepage": "https://github.com/ma-residence/micro-service-template-js#readme",
"dependencies": {
"@types/needle": "^2.0.4",
"@types/node": "^10.14.22",
"@types/swagger-ui-express": "^3.0.1",
"client-oauth2": "^4.2.5",
"cors": "^2.8.5",
"event-dispatch": "^0.4.1",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"form-data": "^2.5.1",
"morgan": "^1.9.1",
"needle": "^2.4.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.2",
"typedi": "^0.8.0",
"typescript": "^3.6.4",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jest": "^23.3.8",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"nodemon": "^1.19.1",
"prettier": "^1.17.0",
"superagent": "^5.1.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0"
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"git add"
],
"*.js": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}