forked from EarnQuestOne/stellar_Earn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 926 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
{
"name": "stellar-earn-ci-tools",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "node tests/run-tests.js",
"lint": "npm --prefix FrontEnd/my-app run lint",
"build": "npm --prefix FrontEnd/my-app run build",
"audit:frontend": "npm --prefix FrontEnd/my-app audit --audit-level=moderate || true",
"depcheck:frontend": "cd FrontEnd/my-app && npx depcheck --json > ../../frontend-depcheck-report.json || echo \"Unused dependencies found\"",
"lint-staged": "lint-staged",
"verify": "npm test && cd FrontEnd/my-app && npm run format:check && npm run typecheck && npm run test && npm run changelog:check",
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && bash scripts/install-hooks.sh || true"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"lint-staged": "^15.5.2",
"prettier": "^3.8.3"
},
"dependencies": {
"next-intl": "^4.13.0"
}
}