-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 1.76 KB
/
package.json
File metadata and controls
executable file
·68 lines (68 loc) · 1.76 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
66
67
68
{
"name": "ts-framework-sql",
"version": "2.5.1",
"description": "A minimalistic web framework for TS",
"author": "Luis Brito <luis@nxtep.io>",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/nxtep-io/ts-framework-sql.git"
},
"scripts": {
"build": "yarn run -s clean && tsc",
"clean": "rimraf ./dist ./docs",
"test": "jest --config jest.json",
"docs": "./scripts/docs.sh",
"lint": "tslint --config tslint.json --project ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again",
"pre-push": "yarn test"
}
},
"lint-staged": {
"{api,config,tests}/**/*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"dependencies": {
"@types/sinon": "^4.3.1",
"glob": "^7.1.2",
"nano-errors": "nxtep-io/nano-errors",
"pg": "^7.4.1",
"reflect-metadata": "^0.1.12",
"ts-framework": "nxtep-io/ts-framework#2.6.0",
"ts-framework-common": "nxtep-io/ts-framework-common#2.4.2",
"typeorm": "^0.2.4"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/glob": "^5.0.35",
"@types/jest": "^23.3.1",
"@types/winston": "^2.3.9",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"lint-staged": "^7.2.0",
"nodemon": "^1.18.7",
"nxtep-typedoc-theme": "nxtep-io/nxtep-typedoc-theme",
"rimraf": "^2.6.2",
"sinon": "^5.0.3",
"supertest": "^3.0.0",
"ts-jest": "^23.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-config-prettier": "^1.14.0",
"typedoc": "^0.14.0",
"typescript": "^3.5.3"
}
}