forked from cds-snc/tti-tools-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "tti_tools_tracker",
"version": "1.0.0",
"description": "",
"author": "",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"dev": "NODE_ENV=dev node src/index.js --deployment",
"dev_pr": "NODE_ENV=dev node src/index.js --pr",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cds-snc/tti_tools_tracker.git"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged",
"pre-push": "npm test"
}
},
"dependencies": {
"@octokit/app": "^2.2.0",
"@octokit/rest": "^16.9.0",
"chrome-launcher": "^0.10.5",
"dotenv-safe": "^6.1.0",
"esm": "^3.0.84",
"firebase-admin": "^6.4.0",
"firebase-functions": "^2.1.0",
"isomorphic-fetch": "^2.2.1",
"lighthouse": "^4.0.0-alpha.2-3.2.1",
"node-fetch": "^2.3.0",
"pretty-bytes": "^5.1.0",
"puppeteer": "^1.11.0",
"serverless-google-cloudfunctions": "^2.3.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"body-parser": "^1.18.3",
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"minimist": "^1.2.0",
"mock-cloud-firestore": "^0.9.0",
"nock": "^10.0.6",
"prettier": "^1.15.3"
}
}