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
45 lines (45 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "stella-polymarket",
"version": "1.0.0",
"private": true,
"workspaces": [
"frontend",
"backend",
"oracle",
"contracts"
],
"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"
]
},
"dependencies": {
"pg": "^8.20.0",
"prom-client": "^15.1.3",
"react-window": "^1.8.11",
"redis": "^5.11.0"
}
}