-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "@jsonhero/jsonhero-chrome",
"version": "1.0.0",
"description": "A chrome extension to easily send JSON to JSON Hero",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsonhero-io/chrome-extension.git"
},
"scripts": {
"build:extension": "NODE_ENV=production node esbuild.js",
"build:css": "tailwindcss -m -i ./src/styles/app.css -o ./public/app.css",
"dev": "concurrently \"npm run dev:css\" \"npm run dev:extension\"",
"dev:extension": "node esbuild.js",
"dev:css": "tailwindcss -w -i ./src/styles/app.css -o ./public/app.css"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.39.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@headlessui/react": "^1.6.3",
"@tailwindcss/forms": "^0.5.2",
"@types/async-retry": "^1.4.4",
"@types/chrome": "^0.0.177",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.1",
"esbuild": "^0.14.39",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.0"
}
}