This repository has been archived by the owner on Mar 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
69 lines (69 loc) · 1.98 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
{
"name": "@tmrow/bloom-contrib",
"version": "0.0.29",
"description": "Carbon models and integrations used at Tomorrow",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tmrowco/bloom-contrib.git"
},
"bugs": {
"url": "https://github.com/tmrowco/bloom-contrib/issues"
},
"dependencies": {
"@ideditor/country-coder": "^3.2.0",
"@microsoft/microsoft-graph-client": "^2.0.0",
"buffer": "^5.2.1",
"crypto-js": "^3.1.9-1",
"d3-geo": "^1.11.6",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"moment-timezone": "^0.5.28",
"oauth-1.0a": "^2.2.5",
"reverse-geocode": "^1.3.3",
"superagent": "^4.1.0",
"tiny-hashes": "^1.0.1",
"uuid": "^3.3.2",
"whatwg-url": "^7.0.0",
"xmldom": "^0.1.27"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@types/jest": "^25.2.2",
"@types/microsoft-graph": "^1.12.0",
"babel-eslint": "^10.1.0",
"babel-plugin-convert-to-json": "^0.1.0",
"copyfiles": "^2.4.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"jest": "^25.2.4",
"prettier": "^2.1.1"
},
"scripts": {
"build": "bash scripts/build.sh",
"lint": "yarn lint:bail --fix --quiet",
"lint:bail": "eslint .",
"test": "TZ='Europe/Copenhagen' jest --runInBand",
"verify:bail": "yarn lint:bail && yarn test && yarn build"
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"co2eq/**/*.js",
"integrations/**/*.js",
"!**/__tests__/**",
"!**/*.test.*"
]
}
}