generated from valora-inc/typescript-app-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "typescript-starter",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "git@github.com:valora-inc/typescript-starter.git",
"author": "Valora Inc",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "^18"
},
"scripts": {
"build": "tsc",
"build:scripts": "tsc --project scripts/tsconfig.json",
"typecheck": "yarn build && yarn build:scripts",
"lint": "eslint --ext=.tsx,.ts,.json src/ scripts/",
"lint:fix": "yarn lint --fix",
"format": "prettier --log-level error --write .",
"format:check": "prettier --check .",
"depcheck": "depcheck",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --ci --coverage",
"supercheck": "yarn format && yarn lint:fix && yarn typecheck && yarn depcheck && yarn test",
"example": "ts-node ./scripts/example.ts",
"deploy": "echo 'Deployed!'"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@valora/eslint-config-typescript": "^1.0.2",
"@valora/prettier-config": "^0.0.1",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"shelljs": "^0.8.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"prettier": "@valora/prettier-config",
"dependencies": {
"got": "^11.8.6",
"viem": "^2.21.45",
"yargs": "^17.7.2"
}
}