-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 2.08 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": "tails-devtools",
"version": "0.1.1",
"description": "Tailwind CSS Developer Tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tw-devtools/react-webext"
},
"scripts": {
"zip": "bash ./scripts/bundle.sh",
"build": "tsc --noEmit && yarn build:chrome && yarn build:firefox && yarn zip",
"build:chrome": "vite build",
"build:firefox": "vite build --config vite.firefox.config.ts",
"dev": "nodemon"
},
"type": "module",
"dependencies": {
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@radix-ui/react-collapsible": "^0.1.6",
"@uiw/react-codemirror": "^4.8.1",
"clsx": "^1.1.1",
"color-name": "^1.1.4",
"culori": "0.20.1",
"deepmerge": "^4.2.2",
"dlv": "^1.1.3",
"downshift": "^6.1.7",
"dset": "^3.1.2",
"fuzzysort": "^2.0.1",
"postcss-selector-parser": "^6.0.10",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-reflex": "^4.0.9",
"react-window": "^1.8.7",
"vc.tailwindcss": "^0.4.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"@types/chrome": "^0.0.180",
"@types/dlv": "^1.1.2",
"@types/node": "^17.0.23",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-highlight-words": "^0.16.4",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react-hooks": "^4.3.0",
"fs-extra": "^10.0.0",
"nodemon": "^2.0.15",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwindcss": "^3.1.2",
"tailwindcss-radix": "^2.2.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.7.0",
"typescript": "^4.5.5",
"vite": "^2.9.1"
}
}