forked from weseek/growi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "growi",
"version": "7.0.21-RC.0",
"description": "Team collaboration software using markdown",
"license": "MIT",
"private": "true",
"tags": [
"wiki",
"communication",
"documentation",
"collaboration"
],
"author": "Yuki Takei <[email protected]>",
"contributors": [],
"homepage": "https://growi.org",
"repository": {
"type": "git",
"url": "https://github.com/weseek/growi.git"
},
"bugs": {
"url": "https://github.com/weseek/growi/issues"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"nohoist": [
"**/uvu/*"
]
},
"scripts": {
"bootstrap": "yarn install",
"start": "yarn app:server",
"prestart": "yarn app:build",
"app:build": "turbo run build --filter @growi/app",
"app:server": "cd apps/app && yarn server",
"slackbot-proxy:build": "turbo run build --filter @growi/slackbot-proxy",
"slackbot-proxy:server": "cd apps/slackbot-proxy && yarn start:prod",
"version-subpackages": "changeset version && yarn upgrade --scope=@growi",
"release-subpackages": "turbo run build --filter @growi/core --filter @growi/pluginkit && changeset publish",
"release-subpackages:snapshot": "turbo run build --filter @growi/core --filter @growi/pluginkit && changeset version --snapshot next && changeset publish --no-git-tag --snapshot --tag next",
"version": "yarn version --no-git-tag-version --non-interactive --preid=RC"
},
"dependencies": {
"cross-env": "^7.0.0",
"dotenv-flow": "^3.2.0",
"npm-run-all": "^4.1.5",
"ts-deepmerge": "^6.2.0",
"tslib": "^2.3.1",
"yargs": "^17.7.1"
},
"// comments for defDependencies": {
"vite-plugin-dts": "v4.2.1 causes the unexpected error 'Cannot find package 'vue-tsc''"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.3",
"@faker-js/faker": "^9.0.1",
"@playwright/test": "^1.46.0",
"@swc-node/register": "^1.9.1",
"@swc/core": "^1.5.25",
"@swc/helpers": "^0.5.11",
"@types/css-modules": "^1.0.2",
"@types/eslint": "^8.37.0",
"@types/estree": "^1.0.1",
"@types/node": "^20.14.0",
"@types/path-browserify": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"eslint": "^8.41.0",
"eslint-config-next": "^12.1.6",
"eslint-config-weseek": "^2.1.1",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-rulesdir": "^0.2.2",
"eslint-plugin-vitest": "^0.2.3",
"glob": "^8.1.0",
"mock-require": "^3.0.3",
"nodemon": "^3.1.3",
"path-browserify": "^1.0.1",
"reg-keygen-git-hash-plugin": "^0.11.1",
"reg-notify-github-plugin": "^0.11.1",
"reg-notify-slack-plugin": "^0.11.0",
"reg-publish-s3-plugin": "^0.11.0",
"reg-suit": "^0.12.2",
"rollup-plugin-node-externals": "^6.1.1",
"shx": "^0.3.4",
"stylelint": "^16.5.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-recommended-scss": "^14.0.0",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.0",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.0.0",
"typescript-transform-paths": "^3.4.7",
"vite": "^5.4.6",
"vite-plugin-dts": "^3.9.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1",
"vitest-mock-extended": "^1.3.1"
},
"engines": {
"node": "^18 || ^20",
"npm": ">=8.5 < 9.6.6",
"yarn": ">=1.22 <2"
}
}