-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.3 KB
/
package.json
File metadata and controls
37 lines (37 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
{
"name": "web3-student-lab-root",
"version": "1.0.0",
"private": true,
"description": "Root configuration for Web3 Student Lab monorepo",
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "lint-staged",
"install-all": "npm install && npm install --prefix backend && npm install --prefix frontend",
"dev-all": "concurrently --kill-others-on-fail \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\"",
"build-all": "npm run build --prefix backend && npm run build --prefix frontend",
"start-all": "concurrently --kill-others-on-fail \"npm run start --prefix backend\" \"npm run start --prefix frontend\"",
"test-all": "npm run test --prefix backend"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"concurrently": "^8.2.2",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,yml,yaml}": [
"prettier --write"
],
"contracts/**/*.rs": [
"bash -lc \"cargo clippy --manifest-path contracts/Cargo.toml -- -D warnings\""
]
},
"dependencies": {
"@stellar/stellar-sdk": "^14.6.1"
}
}