-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.53 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
{
"name": "tbc-members-core-ui",
"version": "0.3.0",
"scripts": {
"build": "vite build",
"build:start": "cd dist && PORT=3000 npx serve",
"dev": "vite",
"preview": "vite preview",
"fmt": "prettier --config prettier.config.js --write .",
"lint": "eslint --ext js,jsx src/",
"lint:fix": "eslint --ext js,jsx --fix src/",
"lint:staged": "lint-staged",
"fix": "npm run fmt && npm run lint:fix",
"prepare": "husky install",
"publish": "npx dotenv -e .env wrangler publish"
},
"license": "MIT",
"author": {
"name": "Tech by Choice Paid Source",
"email": "[email protected]"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --config prettier.config.js --write",
"eslint --fix"
],
"*.{css,gql,graphql,html,json,less,md,mdx,sass,scss}": [
"prettier --config prettier.config.js --write"
],
"*.{yaml,yml}": [
"prettier --config prettier.config.js --tab-width 2 --write"
]
},
"devDependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "^5.16.7",
"@mui/material": "latest",
"@originjs/vite-plugin-federation": "^1.3.6",
"@typescript-eslint/parser": "^7.16.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react-quill": "^2.0.0",
"react-router": "^6.26.1",
"react-router-dom": "^6.26.2",
"typescript": "^5.6.2",
"vite": "^5.4.10"
},
"dependencies": {
"@biomejs/biome": "^1.9.2",
"@mapbox/mapbox-sdk": "^0.16.1",
"@mui/x-charts": "^7.15.0",
"@techbychoice/tbc-component-library": "^0.0.7",
"@tiptap/extension-heading": "^2.8.0",
"@tiptap/extension-paragraph": "^2.6.6",
"@tiptap/extension-text": "^2.7.2",
"@tiptap/pm": "^2.8.0",
"@tiptap/react": "^2.9.1",
"@tiptap/starter-kit": "^2.10.2",
"date-fns": "^3.6.0",
"mapbox-gl": "^3.6.0",
"prop-types": "^15.8.1",
"quill": "^1.3.7",
"react": "^18.3.1",
"react-dev-utils": "^12.0.1",
"react-dom": "^18.3.1"
},
"resolutions": {
"nth-check": "^2.1.1"
}
}