generated from valora-inc/typescript-app-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "@valora/ofac-sdn-list",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "[email protected]:valora-inc/ofac-sdn-list.git",
"author": "Valora Inc",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "^16"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext=.tsx,.ts,.json src/",
"lint:fix": "yarn lint --fix",
"format": "prettier --loglevel error --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:ci": "yarn build && yarn lint && yarn format:check && yarn test",
"release": "standard-version",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@ethersproject/address": "^5.7.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@valora/eslint-config-typescript": "^1.0.2",
"@valora/prettier-config": "^0.0.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.7.2"
},
"prettier": "@valora/prettier-config",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}