-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.45 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
{
"name": "roastme.ru",
"version": "3.0.3",
"description": "A companion tool for adding data to roastme.ru",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@floating-ui/react": "^0.24.1",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.1.0",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.29.7",
"@webcomponents/webcomponentsjs": "^2.8.0",
"awesome-debounce-promise": "^2.1.0",
"axios": "^1.4.0",
"dayjs": "^1.11.7",
"framer-motion": "^10.12.12",
"github-markdown-css": "^5.2.0",
"lodash": "^4.17.21",
"postcss-scss": "^4.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-hook-form": "^7.43.9",
"react-use": "^17.4.0",
"uuid": "^9.0.0",
"yup": "^1.1.1"
},
"devDependencies": {
"@types/chrome": "^0.0.236",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/node": "^20.2.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/stylis": "^4.2.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^10.2.5",
"jest": "^29.5.0",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"style-loader": "^3.3.2",
"svg-inline-loader": "^0.8.2",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-merge": "^5.8.0"
}
}