forked from ytgify/ytgify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.55 KB
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": "ytgify",
"version": "1.0.3",
"description": "Turn your favorite YouTube moments into shareable GIFs.",
"private": true,
"type": "module",
"scripts": {
"dev": "webpack --config webpack.config.cjs --mode development --watch",
"build": "webpack --config webpack.config.cjs --mode production",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'",
"lint:fix": "eslint 'src/**/*.ts' 'src/**/*.tsx' --fix",
"test": "jest --config tests/jest.config.cjs",
"test:watch": "jest --config tests/jest.config.cjs --watch",
"test:coverage": "jest --config tests/jest.config.cjs --coverage",
"test:e2e": "playwright test --config tests/playwright.config.ts",
"test:e2e:debug": "playwright test --config tests/playwright.config.ts --debug",
"test:e2e:headed": "playwright test --config tests/playwright.config.ts --headed",
"test:e2e:fast": "HEADLESS=true playwright test --config tests/playwright.config.ts tests/e2e/wizard-basic.spec.ts --workers=3 --fully-parallel",
"test:all": "npm run test && npm run test:e2e",
"validate:pre-push": "npm run lint && npm run build && npm run typecheck && npm test && npm run test:e2e:fast",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.0.254",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^16.4.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^16.1.6",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.43.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@radix-ui/react-slider": "^1.3.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"gifenc": "^1.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0"
}
}