-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ts-framework-cli",
"version": "2.8.0",
"description": "A minimalistic framework for Typescript applications",
"author": "Luis Brito <luis@nxtep.io>",
"license": "MIT",
"main": "./dist/index.js",
"bin": {
"ts-framework": "./bin/ts-framework"
},
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/nxtep-io/ts-framework-cli.git"
},
"scripts": {
"build": "yarn run -s clean && tsc",
"postbuild": "./scripts/chmod.sh",
"clean": "rimraf ./dist",
"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"
]
},
"resolutions": {
"nodemon/upath": "1.1.0",
"nodemon/**/upath": "1.1.0",
"**/ts-framework": "nxtep-io/ts-framework#2.8.0",
"**/ts-framework-common": "nxtep-io/ts-framework-common#2.5.0"
},
"dependencies": {
"@types/json5": "^0.0.30",
"@types/yargs": "^12.0.5",
"generator-ts-framework": "nxtep-io/generator-ts-framework#1.1.0",
"json": "^9.0.6",
"json5": "^2.1.0",
"ts-framework": "nxtep-io/ts-framework#2.8.0",
"ts-framework-common": "nxtep-io/ts-framework-common#2.5.0",
"typeorm": "^0.2.11",
"uuid": "^3.3.2",
"yargs": "^12.0.5",
"yeoman-environment": "^2.3.4"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"husky": "^1.0.0-rc.13",
"jest": "^26.6.3",
"lint-staged": "^7.2.0",
"nodemon": "^2.0.7",
"nxtep-typedoc-theme": "nxtep-io/nxtep-typedoc-theme",
"prettier": "^1.14.0",
"rimraf": "^2.6.2",
"sinon": "^5.0.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-config-prettier": "^1.14.0",
"tslint-no-circular-imports": "^0.5.0",
"typedoc": "^0.13.0",
"typescript": "^4.2.3"
},
"optionalDependencies": {
"ts-framework-sql": "nxtep-io/ts-framework-sql"
}
}