forked from lamassu/lamassu-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.16 KB
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
{
"name": "lamassu-server",
"description": "bitcoin atm client server protocol module",
"version": "12.0.1",
"license": "./LICENSE",
"author": "Lamassu (https://lamassu.is)",
"packageManager": "pnpm@10.11.0",
"repository": {
"type": "git",
"url": "https://github.com/lamassu/lamassu-server.git"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/css": "^0.7.0",
"@eslint/js": "^9.26.0",
"@eslint/json": "^0.12.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^16.1.0",
"husky": "^8.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"turbo": "^2.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"scripts": {
"prepare": "husky install",
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint --fix"
]
}
}