generated from korniychuk/wallaby-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.35 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
{
"name": "@z-brain/typeorm-postgres-camelcase-naming-strategy",
"description": "Pascal/Camel Case naming for everything in the PostgreSQL",
"author": "Anton Korniychuk <dev@korniychuk.pro>",
"license": "GPL-3.0",
"private": false,
"version": "1.0.17",
"bugs": {
"url": "https://github.com/z-brain/typeorm-postgres-camelcase-naming-strategy/issues"
},
"homepage": "https://github.com/z-brain/typeorm-postgres-camelcase-naming-strategy",
"repository": {
"type": "git",
"url": "git@github.com:z-brain/typeorm-postgres-camelcase-naming-strategy.git"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.20.0"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:prod": "yarn run build",
"lint": "eslint --ext .js,.ts src/**",
"lint:fix": "yarn run lint -- --fix",
"pre-push": "yarn run lint && yarn run test && yarn run build:prod && yarn run tpl-repo:check",
"preinstall": "node ./tools/check-yarn.js",
"test": "jest -c jest.config.js",
"test:watch": "yarn run test -- --watch",
"tpl-repo": "tools/merge-with-repository-template.sh",
"tpl-repo:check": "yarn run tpl-repo -- check",
"tpl-repo:merge": "yarn run tpl-repo -- merge",
"gen-public-package.json": "tools/gen-public-package.js"
},
"dependencies": {
"lodash": "^4.0.0",
"pluralize": "^8.0.0"
},
"peerDependencies": {
"typeorm": "^0.2.22",
"@types/node": ">=12.12.6"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@babel/preset-env": "~7.9.0",
"@babel/preset-typescript": "~7.9.0",
"@types/jest": "~25.2.1",
"@types/lodash": "^4.14.0",
"@types/node": "^12.0.0",
"@types/pluralize": "~0.0.29",
"@typescript-eslint/eslint-plugin": "~2.27.0",
"@typescript-eslint/parser": "~2.27.0",
"eslint": "~6.8.0",
"eslint-config-airbnb-base": "~14.0.0",
"eslint-import-resolver-typescript": "~2.0.0",
"eslint-plugin-filenames": "~1.3.2",
"eslint-plugin-import": "~2.19.1",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-unicorn": "~15.0.1",
"husky": "~3.1.0",
"jest": "~25.2.7",
"jest-extended": "~0.11.5",
"rimraf": "~3.0.0",
"typeorm": "^0.2.22",
"typescript": "~3.8.3"
},
"husky": {
"hooks": {
"pre-push": "yarn run pre-push",
"post-merge": "IS_YARN=true yarn install"
}
}
}