-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "minerva",
"description": "",
"scripts": {
"release": "pnpm run release -r ./lib-core",
"dev:sample": "pnpm --filter @minerva/sample dev",
"serve": "pnpm --filter @minerva/sample serve",
"build": "pnpm -r build",
"test": "pnpm -r test",
"clean": "pnpm -r clean && rimraf node_modules",
"clean:cache": "pnpm -r clean:cache",
"lint": "pnpm -r lint",
"format": "pnpm -r format"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.10.0"
},
"dependencies": {
"i18next": "^23.12.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.0",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.0",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/enzyme": "^3.10.18",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"babel-jest": "^27.5.1",
"babel-plugin-transform-rename-import": "^2.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"fast-glob": "^3.3.2",
"husky": "^9.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"pnpm": "^9.6.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"standard-version": "^9.5.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{src,sample}/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}