generated from nim-od/softeer-mono-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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
{
"name": "softeer",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"installConfig": {
"hoistingLimits": "workspaces"
},
"scripts": {
"start:admin": "yarn workspace @softeer/common build && yarn workspace admin start",
"start:user": "yarn workspace @softeer/common build && yarn workspace user start",
"build:admin": "yarn workspace admin build",
"build:user": "yarn workspace user build",
"build:common": "yarn workspace @softeer/common build",
"lint:fix": "eslint --fix --ext .js,.jsx --no-cache",
"prettier:fix": "prettier --write './packages/**/*.{js,jsx,ts,tsx}' --cache --cache-location=.yarn/prettier-cache"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"@types/moment": "^2.13.0",
"@types/sockjs-client": "^1.5.4",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.25.1",
"react-toastify": "^10.0.5",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@types/eslint": "^8",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-hooks": "^0.4.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.4"
},
"packageManager": "yarn@4.4.0"
}