-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.52 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
{
"author": "Roland Chelwing-Grzybowski",
"bugs": {
"url": "https://github.com/Fralleee/SwiftPaste/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"theme-change": "^2.5.0",
"usehooks-ts": "^2.9.1"
},
"description": "SwiftPaste is a Chrome extension that enhances your copy-paste workflow. It allows quick access to categorized clipboard data based on context, making tasks like form filling, coding, and communication more efficient. Contributions are welcomed. See the contributing guide for more details.",
"devDependencies": {
"@playwright/test": "^1.35.1",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@types/chrome": "^0.0.237",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.13",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"daisyui": "^3.1.0",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.24",
"postcss-loader": "^7.0.2",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.8.0"
},
"homepage": "https://github.com/Fralleee/SwiftPaste#readme",
"license": "MIT",
"name": "swiftpaste",
"repository": {
"type": "git",
"url": "git+https://github.com/Fralleee/SwiftPaste.git"
},
"scripts": {
"build": "webpack --progress --config ./scripts/webpack.prod.js",
"dev": "concurrently \"npm run dev:start\" \"npm run dev:watch\"",
"dev:start": "webpack serve --config ./scripts/webpack.devServer.js",
"dev:watch": "webpack --watch --config ./scripts/webpack.dev.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"playwright": "playwright test"
},
"version": "0.1.0"
}