-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.61 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
106
107
108
109
{
"name": "mmbook-peril-settings",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/peril-settings",
"author": "Orta Therox <[email protected]>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@slack/client": "^4.5.0",
"@types/csv-parse": "^1.1.12",
"@types/lodash": "^4.14.116",
"@types/node": "^9.1.2",
"@types/node-fetch": "^2.1.2",
"aws-sdk": "^2.374.0",
"danger-plugin-spellcheck": "^1.2.3",
"danger-plugin-yarn": "^1.2.1",
"github-webhook-event-types": "^1.1.0",
"googleapis": "^36.0.0",
"jira-client": "6.4.1",
"lodash": "4.17.4",
"semver-sort": "0.0.4",
"ts-node": "^8.0.2"
},
"dependencies": {
"@octokit/rest": "16.15.0",
"@sentry/node": "4.1.1",
"@slack/client": "4.8.0",
"agenda": "1.0.3",
"apollo-server-express": "1.4.0",
"async-exit-hook": "2.0.1",
"aws-sdk": "2.374.0",
"babel-polyfill": "7.0.0-alpha.19",
"body-parser": "1.18.3",
"chalk": "2.4.2",
"cookie": "0.3.1",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"csv-parse": "^4.3.3",
"danger": "7.0.9",
"debug": "4.1.1",
"dotenv": "5.0.1",
"express": "4.16.4",
"express-x-hub": "1.0.4",
"get-stdin": "6.0.0",
"github-webhook-event-types": "1.2.1",
"graphql": "0.13.2",
"graphql-playground-middleware-express": "1.7.5",
"graphql-relay": "0.5.5",
"graphql-resolvers": "0.2.2",
"graphql-tools": "3.1.1",
"graphql-tools-types": "1.1.26",
"hyper-aws4": "1.1.3",
"json5": "2.1.0",
"jsonwebtoken": "8.4.0",
"lodash": "4.17.11",
"mongoose": "5.3.4",
"node-fetch": "2.3.0",
"node-mocks-http": "1.7.3",
"override-require": "1.1.1",
"primus": "7.2.3",
"require-from-string": "2.0.2",
"typescript": "3.3.3",
"url": "0.10.3",
"uuid": "3.3.2",
"winston": "3.1.0",
"winston-papertrail": "1.0.5"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"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"
]
}
}