This repository has been archived by the owner on Dec 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "bundle-size-tracker",
"private": true,
"version": "1.0.1",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=dev node src/index.js --mockPayload",
"test": "jest",
"lint": "eslint src/*.js"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged",
"pre-push": "npm test"
}
},
"dependencies": {
"@babel/runtime": "^7.4.2",
"@octokit/app": "^2.2.2",
"@octokit/rest": "^16.22.0",
"dotenv-safe": "^6.1.0",
"esm": "^3.2.22",
"firebase-admin": "^7.2.0",
"firebase-functions": "^2.2.1",
"pretty-bytes": "^5.1.0",
"serverless-google-cloudfunctions": "^2.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"body-parser": "^1.18.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"minimist": "^1.2.0",
"mock-cloud-firestore": "^0.9.2",
"nock": "^10.0.6",
"prettier": "^1.16.4"
}
}