forked from Feyisara2108/stellargive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 699 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 699 Bytes
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
{
"name": "stellargive",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"lint:staged": "lint-staged"
},
"dependencies": {
"react-hook-form": "^7.76.1"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@stellar/stellar-sdk": "^15.1.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"lint-staged": {
"frontend/**/*.{js,jsx,ts,tsx}": [
"npx prettier --check",
"npx eslint --config frontend/.eslintrc.json"
],
"contracts/**/*.rs": [
"cargo fmt --manifest-path contracts/stellar-give/Cargo.toml --check --"
]
}
}