-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"private": true,
"name": "monorepo-template",
"description": "monorepo template",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"docs:build": "vite build",
"docs:serve": "http-server docs-dist --spa",
"build": "npm run pub:only && npm run docs:build",
"deploy": "npm run docs:build && npm run docs:deploy",
"c": "changeset && changeset version",
"pub:only": "npm run test && changeset publish",
"pub": "npm run pub:only && git push",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"lint-staged": "lint-staged",
"test": "pnpm --filter=@orca-fe/* run test ",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix"
]
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@orca-fe/eslint-config": "^2.3.3",
"@types/jest": "^29.5.4",
"@types/node": "^18.17.14",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.0.4",
"change-case": "^4.1.2",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"fast-glob": "^3.3.1",
"father": "^4.3.2",
"husky": "^8.0.3",
"jest": "^29.6.4",
"less": "^4.2.0",
"lint-staged": "^13.3.0",
"path-browserify": "^1.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"slash": "^5.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}