forked from weseek/growi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.18 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
{
"name": "growi",
"version": "5.0.11-RC.0",
"description": "Team collaboration software using markdown",
"tags": [
"wiki",
"communication",
"documentation",
"collaboration"
],
"author": "Yuki Takei <[email protected]>",
"contributors": [],
"license": "MIT",
"homepage": "https://growi.org",
"repository": {
"type": "git",
"url": "https://github.com/weseek/growi.git"
},
"bugs": {
"url": "https://github.com/weseek/growi/issues"
},
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/slackbot-proxy/bootstrap"
]
},
"scripts": {
"start": "yarn app:server",
"prestart": "yarn app:build",
"app:build": "yarn lerna run build",
"app:server": "yarn lerna run server --scope @growi/app",
"slackbot-proxy:build": "yarn lerna run build --scope @growi/slackbot-proxy --scope @growi/slack",
"slackbot-proxy:server": "yarn lerna run start:prod --scope @growi/slackbot-proxy",
"bump-versions:premajor": "node ./bin/github-actions/bump-versions -i premajor",
"bump-versions:preminor": "node ./bin/github-actions/bump-versions -i preminor",
"bump-versions:patch": "node ./bin/github-actions/bump-versions -i patch",
"bump-versions:rc": "node ./bin/github-actions/bump-versions -i prerelease",
"bump-versions:slackbot-proxy": "node ./bin/github-actions/bump-versions -i prerelease -d packages/slackbot-proxy --preid slackbot-proxy --update-dependencies false",
"//// scripts for backward compatibility": "",
"build:prod": "echo !!! CAUTION !!! ==> The script 'build:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:build",
"server:prod": "echo !!! CAUTION !!! ==> The script 'server:prod' is deprecated. Use 'yarn app:build' instead. && yarn app:server"
},
"dependencies": {
"cross-env": "^7.0.0",
"dotenv-flow": "^3.2.0",
"npm-run-all": "^4.1.5",
"tslib": "^2.3.1"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.2",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.35",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"cypress": "^9.2.0",
"eslint": "^7.31.0",
"eslint-config-weseek": "^2.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"jest-date-mock": "^1.0.8",
"jest-localstorage-mock": "^2.4.14",
"lerna": "^4.0.0",
"postcss": "^8.4.5",
"postcss-scss": "^4.0.3",
"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.11.1",
"rewire": "^5.0.0",
"shipjs": "^0.24.1",
"stylelint": "^14.2.0",
"stylelint-config-recess-order": "^3.0.0",
"ts-jest": "^27.0.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "~4.6",
"yargs": "^17.3.1"
},
"engines": {
"node": "^14 || ^16",
"npm": ">=6.14 <7 || >=8.1 < 9",
"yarn": ">=1.22 <2"
}
}