-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
80 lines (80 loc) · 2.49 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": "pnpm-monorepo-mui",
"version": "1.3.0",
"description": "",
"main": "index.js",
"scripts": {
"bootstrap": "pnpm install",
"preinstall": "npx only-allow pnpm",
"postinstall": "turbo run stub",
"build": "turbo build",
"docs:build": "turbo docs:build --filter gbeata",
"build:admin": "pnpm run build --filter gbeata-admin",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"commit": "git add -A && git cz",
"release": "turbo release",
"init-changeset": "changeset init",
"change:ver": "changeset version",
"change:pub": "changeset publish",
"clean": "pnpm clean:turbo-cache",
"clean:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:turbo-cache": "turbo run clean && rimraf node_modules",
"reinstall": "pnpm run clean && rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && pnpm cache clear --force && npm run bootstrap",
"create:app": "plop app"
},
"keywords": [],
"author": "",
"license": "ISC",
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@gbeata/eslint-config": "workspace:^",
"@gbeata/ts-config": "workspace:^",
"@gbeata/utils": "workspace:^",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.5",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^20.10.7",
"@types/numeral": "^2.0.5",
"@types/ramda": "^0.29.10",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.8.0",
"esbuild": "0.19.11",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"turbo": "^1.11.0",
"typescript": "^5.2.2",
"unbuild": "v3.0.0-rc.1"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"antd": "^5.12.1",
"antd-style": "^3.6.1",
"i18next": "^23.7.19",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.4.2",
"numeral": "^2.0.6",
"plop": "^4.0.1",
"ramda": "^0.29.1",
"react-i18next": "^14.0.1"
},
"engines": {
"node": ">=18.0.0"
}
}