-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.01 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": "rektocode",
"description": "Chrome extension to generate code from HTTP requests",
"keywords": [
"rektocode",
"chrome",
"extension",
"request",
"codegen",
"generator",
"devtools",
"http"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/majidsajadi/rektocode"
},
"homepage": "https://github.com/majidsajadi/rektocode",
"author": "Majid Sajadi <majidsajadi93@gmail.com> (https://github.com/majidsaiadi)",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix --ignore-path .gitignore",
"fmt": "prettier --write . --ignore-path .gitignore"
},
"dependencies": {
"@codemirror/lang-javascript": "^0.19.7",
"@codemirror/lang-python": "^0.19.4",
"@codemirror/legacy-modes": "^0.19.0",
"@tailwindcss/forms": "^0.4.0",
"@uiw/react-codemirror": "^4.3.3",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"fuse.js": "^6.5.3",
"jsesc": "^3.0.2",
"react": "^17.0.2",
"react-collapse-pane": "^2.0.1",
"react-dom": "^17.0.2",
"uuid": "^8.3.2",
"whatwg-mimetype": "^3.0.0"
},
"devDependencies": {
"@types/chrome": "^0.0.177",
"@types/jsesc": "^3.0.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/uuid": "^8.3.4",
"@types/whatwg-mimetype": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.2",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.18",
"typescript": "^4.4.4",
"vite": "^2.7.2"
}
}