forked from Hahfyeex/Stellar-PolyMarket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"name": "stella-polymarket",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"lint": "eslint \"{frontend,backend,oracle}/src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"{frontend,backend,oracle}/src/**/*.{js,ts,tsx}\" --fix",
"format": "prettier --write \"{frontend,backend,oracle}/src/**/*.{js,ts,tsx,css}\"",
"format:check": "prettier --check \"{frontend,backend,oracle}/src/**/*.{js,ts,tsx,css}\"",
"clippy": "cargo clippy --manifest-path contracts/prediction_market/Cargo.toml -- -D warnings"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.0.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.2.0"
},
"lint-staged": {
"{frontend,backend,oracle}/src/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{frontend,backend,oracle}/src/**/*.css": [
"prettier --write"
]
}
}