-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.87 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
{
"name": "peril-settings",
"version": "0.0.1",
"repository": "https://github.com/kevnm67/peril-settings",
"author": "Kevin Morton <kevnm67@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"type-check": "tsc --noEmit"
},
"homepage": "https://github.com/kevnm67/peril-settings",
"dependencies": {
"@types/graphql": "^14.5.0",
"@types/semver": "^7.1.0",
"@types/semver-sort": "0.0.0",
"googleapis": "^59.0.0",
"graphql-schema-utils": "^0.6.5",
"graphql-tools": "^4.0.7",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"semver": "^7.1.3",
"semver-sort": "^0.0.4"
},
"devDependencies": {
"@slack/client": "^5.0.2",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^14.11.8",
"@types/node-fetch": "^2.5.7",
"danger": "^10.4.1",
"danger-plugin-spellcheck": "^1.5.0",
"danger-plugin-yarn": "^1.3.0",
"github-webhook-event-types": "^1.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.10",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true
},
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverage": true,
"coverageDirectory": "test-reports/coverage",
"testRegex": "(.test)\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn prettier --write",
"git add"
],
"*.test.@(ts|tsx)": [
"jest"
],
"*.json": [
"yarn prettier --write",
"git add"
],
"*.md": [
"yarn prettier --write",
"git add"
]
}
}