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
32 lines (32 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 785 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
31
32
{
"name": "stellargive",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"lint:staged": "lint-staged",
"test:e2e": "playwright test",
"test:e2e:update": "playwright test --update-snapshots"
},
"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}": [
"prettier --write",
"eslint --config frontend/.eslintrc.json --fix"
],
"contracts/**/*.rs": [
"cargo fmt --manifest-path contracts/stellar-give/Cargo.toml --"
]
}
}