-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.68 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.68 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
{
"name": "@oasisprotocol/rose-app",
"version": "1.1.2",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"eslint": "eslint . --cache --ext .js,.ts,.tsx --max-warnings 0",
"lint-git": "node ./internals/scripts/gitlint.mjs",
"lint-docs": "markdownlint --ignore '**/node_modules/**' '**/*.md'",
"lint-changelog": "markdownlint --config .changelog/.markdownlint.yml .changelog/",
"changelog": "node ./internals/scripts/changelog.js",
"release-tag": "node ./internals/scripts/release-tag.js",
"prettier-check": "prettier --check . --ignore-path .eslintignore",
"prettier": "prettier --write . --ignore-path .eslintignore",
"build": "pnpm --filter @oasisprotocol/rose-app-home build",
"dev": "pnpm --filter @oasisprotocol/rose-app-home dev",
"test": "pnpm --filter=!@oasisprotocol/rose-app-e2e --parallel -r run test",
"test-e2e": "pnpm --filter @oasisprotocol/rose-app-e2e test"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20",
"pnpm": ">=10.0.0"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx}": "eslint --ext .js,.ts,.tsx --max-warnings 0 --ignore-path .eslintignore",
"*.{js,cjs,mjs,ts,tsx,css}": "prettier --write --ignore-path .eslintignore"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"glob": "^11.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.39.0",
"prettier": "^3.2.5",
"semver": "^7.7.1"
}
}