-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "ts-express-orm",
"version": "0.0.7",
"description": "A minimalistic NodeJS based Typescript, Expressjs and TypeORM boilerplate generator",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"tseo": "./lib/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"run": "node lib/index.js",
"test": "echo All test passed",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amjha/ts-express-orm.git"
},
"keywords": [
"NodeJS",
"Typescript",
"TypeORM",
"ExpressJS"
],
"files": [
"lib/**/*"
],
"author": "Amit Jha",
"license": "MIT",
"bugs": {
"url": "https://github.com/amjha/ts-express-orm/issues"
},
"homepage": "https://github.com/amjha/ts-express-orm#readme",
"devDependencies": {
"@types/node": "^14.0.11",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5"
},
"dependencies": {
"@types/fs-extra": "^9.0.1",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"figlet": "^1.4.0",
"fs-extra": "^9.0.1",
"node-fetch": "^2.6.0",
"prompts": "^2.3.2"
}
}