This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
forked from valora-inc/address-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "address-metadata",
"version": "0.0.1",
"description": "Package for storing and updating static RTDB data",
"private": true,
"engines": {
"node": "^16"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext=.tsx,.ts --fix src/",
"format": "prettier --loglevel error --write .",
"validate": "jest",
"diff": "ts-node scripts/diff.ts",
"update": "ts-node scripts/update.ts",
"test": "yarn jest && yarn prettier --check . && yarn eslint --ext=.ts src/"
},
"prettier": "@valora/prettier-config",
"repository": "[email protected]:valora-inc/rtdb-data.git",
"author": "Valora Inc",
"contributors": [
"Joseph Bergeron <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@types/node": "^17.0.0",
"dotenv": "^10.0.0",
"firebase-admin": "^10.0.1",
"joi": "^17.5.0",
"json-diff": "^0.5.4",
"typescript": "~4.3.5",
"yargs": "^17.3.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/json-diff": "^0.5.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@valora/eslint-config-typescript": "^0.0.1",
"@valora/prettier-config": "^0.0.1",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^7.0.4",
"image-size": "^1.0.1",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0"
}
}