forked from ancore-org/ancore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
50
51
52
53
54
55
{
"name": "ancore",
"version": "0.1.0",
"private": true,
"description": "Open-source account abstraction and financial UX layer for the Stellar network",
"repository": {
"type": "git",
"url": "https://github.com/ancore-org/ancore.git"
},
"workspaces": [
"apps/*",
"packages/*",
"services/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"contracts:build": "cd contracts && cargo build --target wasm32-unknown-unknown --release",
"contracts:test": "cd contracts && cargo test",
"prepare": "husky"
},
"devDependencies": {
"@turbo/gen": "^2.3.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.2.5",
"turbo": "^2.3.0",
"typescript": "^5.6.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"js-yaml": ">=4.1.1",
"tmp": ">=0.2.4"
}
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}