-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 2.46 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": "airtable-hint-gpt",
"version": "1.1.4",
"description": "GPT hints for Airtable formula field",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gregonarash/airtable-hint"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"build:watch": "__DEV__=true vite build --watch",
"build:hmr": "rollup --config utils/reload/rollup.config.ts",
"wss": "node utils/reload/initReloadServer.js",
"dev": "npm run build:hmr && (run-p wss build:watch)",
"dev-debug": "NODE_OPTIONS='--inspect-brk' npm run build:hmr && (run-p wss build:watch)",
"test": "jest"
},
"type": "module",
"dependencies": {
"@formkit/auto-animate": "^1.0.0-beta.6",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-label": "^2.0.0",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.0.3",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-slider": "^1.1.0",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.5",
"@twind/core": "^1.1.3",
"@twind/preset-autoprefix": "^1.0.7",
"@twind/preset-tailwind": "^1.1.4",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"construct-style-sheets-polyfill": "^3.1.0",
"jquery": "^3.6.3",
"lucide-react": "^0.109.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^1.9.0",
"tailwindcss-animate": "^1.0.5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@testing-library/react": "13.4.0",
"@types/chrome": "0.0.197",
"@types/jest": "29.0.3",
"@types/jquery": "^3.5.16",
"@types/node": "18.7.23",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"@vitejs/plugin-react": "2.1.0",
"autoprefixer": "^10.4.13",
"chokidar": "^3.5.3",
"eslint": "8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"fs-extra": "10.1.0",
"jest": "29.0.3",
"jest-environment-jsdom": "29.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"rollup": "2.79.1",
"sass": "1.55.0",
"tailwindcss": "^3.2.4",
"ts-jest": "29.0.2",
"ts-loader": "9.4.1",
"typescript": "4.8.3",
"vite": "3.1.3",
"ws": "8.9.0"
}
}