This repository has been archived by the owner on Oct 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.24 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@caseywebb/growhaus",
"version": "1.3.2",
"license": "WTFPL",
"bin": "./bin/growhaus",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc -b",
"start": "node dist/index.js",
"lint": "esw --color --ignore-path .gitignore --ext .js,.ts ./",
"format": "pretty-quick",
"test": "jest",
"release": "standard-version --sign && git push --follow-tags"
},
"dependencies": {
"johnny-five": "^2.0.0",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"pi-io": "^1.0.0",
"tslib": "^2.0.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^26.0.14",
"@types/johnny-five": "^1.3.0",
"@types/jquery": "^3.5.3",
"@types/koa": "^2.11.4",
"@types/lodash": "^4.14.162",
"@types/mockdate": "^2.0.0",
"commitlint": "^8.3.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.5.1",
"eslint-config-profiscience": "^5.0.2",
"eslint-watch": "^6.0.1",
"husky": "^4.3.0",
"jest": "^26.6.0",
"mockdate": "^3.0.2",
"prettier": "^2.1.2",
"pretty-quick": "^2.0.1",
"standard-version": "^7.1.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.5"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"coverageReporters": [
"lcov",
"html"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"isolatedModules": true,
"diagnostics": false
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": [
"profiscience"
],
"parserOptions": {
"project": [
"./tsconfig.json",
"./tsconfig.test.json"
]
}
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn format --staged",
"pre-push": "yarn lint"
}
}
}