-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "transportes-portugal-api",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"postinstall": "npm run build",
"build": "rimraf dist && tsc",
"dev": "SKIP_IMPORT=false ts-node-dev $NODE_DEBUG_OPTION ./src/server.ts",
"prestart": "npm run build",
"start": "node ./dist/server.js",
"commit": "git-cz",
"prod": "npm run build && npm run start",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/AndreVarandas/transportes-portugal-api.git"
},
"keywords": [],
"author": "André Varandas, <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreVarandas/transportes-portugal-api/issues"
},
"homepage": "https://github.com/AndreVarandas/transportes-portugal-api#readme",
"dependencies": {
"@types/express": "^4.16.0",
"@types/mongoose": "^5.3.25",
"typescript": "^3.2.2",
"rimraf": "^3.0.0",
"body-parser": "^1.20.3",
"express": "^4.21.0",
"gtfs": "^1.8.7",
"mongoose": "^5.13.20"
},
"devDependencies": {
"@semantic-release/github": "^7.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.0.0",
"husky": "^8.0.3",
"prettier": "^2.0.0",
"semantic-release": "^21.0.1",
"ts-node-dev": "^1.0.0-pre.32",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}