-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.44 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
{
"name": "weeb-profile",
"version": "1.0.0",
"private": true,
"workspaces": [
"core",
"source",
"web-client"
],
"scripts": {
"action:start": "yarn workspace @weeb/core start",
"vercel:dev": "yarn workspace @weeb/web-client dev",
"vercel:start": "yarn workspace @weeb/web-client start",
"vercel:build": "yarn workspace @weeb/web-client build",
"build": "yarn workspace @weeb/web-client build",
"dev": "yarn workspace @weeb/web-client dev",
"start": "yarn workspace @weeb/web-client start",
"check:lint": "eslint \"./core/src/**/*.{ts,tsx}\" \"./source/**/*.{ts,tsx}\" \"./web-client/**/*.{ts,tsx}\" --max-warnings=0",
"check:lint-fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"check:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"check:prettier-fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"format": "yarn check:prettier-fix && yarn check:lint-fix",
"check:plugins": "tsx core/src/setup/checkPlugins/validatePlugins.ts",
"generate:readme": "tsx core/src/setup/readme/generateReadme.ts",
"generate:actions": "tsx core/src/setup/action/generateAction.ts"
},
"dependencies": {
"@octokit/graphql": "^8.1.1",
"@octokit/rest": "^21.0.2",
"axios": "^1.7.7",
"axios-cache-interceptor": "^1.6.1",
"cheerio": "^1.0.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"octokit": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/mustache": "^4.2.5",
"@types/node": "^20.11.18",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"globals": "^13.24.0",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.4",
"postcss-nesting": "^12.0.2",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"typescript": "^5.4.0"
}
}