-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "boring-devtools",
"private": true,
"version": "1.0.9",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:check": "rm -rf dist && tsc && vite build && vite preview",
"lint:check": "eslint --ext .js --ext .tsx --ext .ts --ext .json .",
"lint:fix": "eslint --fix --ext js --ext .tsx --ext .ts --ext .json ."
},
"homepage": "https://boring-devtools.com",
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/utils": "^1.2.0",
"@faker-js/faker": "^7.6.0",
"@mantine/core": "^5.10.1",
"@mantine/dates": "^5.10.1",
"@mantine/hooks": "^5.10.1",
"@mantine/spotlight": "^5.10.1",
"@tabler/icons": "^1.119.0",
"dayjs": "^1.11.7",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.7.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react": "^3.0.1",
"eslint": "^8.32.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.32.1",
"typescript": "^4.9.4",
"vite": "5.1.0-beta.2"
}
}