This repository was archived by the owner on Jun 26, 2021. It is now read-only.
-
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.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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": "functional-orm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"bin": {
"gostek-generate": "./lib/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x ./lib/cli.js",
"test": "jest",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx"
},
"keywords": [],
"author": "Michał Miszczyszyn <michal@mmiszy.pl> (https://typeofweb.com/)",
"license": "ISC",
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "15.12.4",
"@types/ramda": "0.27.41",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-typestrict": "1.0.0",
"eslint-plugin-expect-type": "0.0.5",
"eslint-plugin-sonarjs": "0.5.0",
"fast-check": "2.17.0",
"husky": "6.0.0",
"jest": "25.5.4",
"jest-extended": "0.11.5",
"lint-staged": "11.0.0",
"pg-sql2": "4.12.1",
"ts-jest": "25.5.1",
"typescript": "3.9.10"
},
"dependencies": {
"@types/lodash": "4.14.170",
"app-root-path": "3.0.0",
"lodash": "4.17.21",
"pg-promise": "10.10.2",
"prettier": "2.3.1",
"ts-morph": "7.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint",
"*.{js,jsx,ts,tsx,md,html,css,json,yml}": "prettier --write"
}
}