forked from forge-42/react-router-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.1 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
95
96
97
98
99
100
101
102
103
104
{
"name": "remix-development-tools",
"description": "Remix development tools.",
"author": "Alem Tuzlak",
"version": "1.1.0",
"license": "MIT",
"keywords": [
"remix",
"remix-dev-tools"
],
"private": false,
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.mjs",
"exports": {
"./stylesheet.css": "./dist/stylesheet.css",
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs",
"node": "./dist/index.umd.cjs"
}
},
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Forge-Net/Remix-Dev-Tools.git"
},
"bugs": {
"url": "https://github.com/Code-Forge-Net/Remix-Dev-Tools/issues"
},
"homepage": "https://github.com/Code-Forge-Net/Remix-Dev-Tools#readme",
"readme": "https://github.com/Code-Forge-Net/Remix-Dev-Tools#readme",
"scripts": {
"prepublishOnly": "npm run build",
"remix": "npm run dev -w remix-app-for-testing",
"dev": "npm-run-all -s build:dev -p remix vite",
"build:dev": "vite build -m development",
"build": "vite build",
"vite": "vite build --watch -m development",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --check .",
"preview": "vite preview",
"profile": "vite build --profile",
"test": "vitest run --coverage",
"setup": "npm install && cd ./src/remix-app-for-testing && npm install && cd ../..",
"prepare": "husky install",
"tsc": "tsc --noEmit",
"validate": "npm run lint && npm run tsc && npm run test"
},
"workspaces": [
".",
"src/remix-app-for-testing"
],
"peerDependencies": {
"@remix-run/react": "^1.15",
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@remix-run/react": "^1.18.1",
"@remix-run/server-runtime": "^1.18.1",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.16.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-c8": "^0.30.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"happy-dom": "^9.9.2",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.34.1",
"tailwindcss": "^3.3.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vitest": "^0.30.1"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"clsx": "^1.2.1",
"lucide-react": "^0.252.0",
"react-json-view-lite": "^0.9.6",
"react-use-websocket": "^4.3.1",
"tailwind-merge": "^1.13.2"
}
}