-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.28 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
{
"name": "headgear",
"version": "0.6.0",
"description": "Chrome browser extension for exporting your Reddit Avatar",
"repository": "https://github.com/h4l/headgear.git",
"scripts": {
"webpack-prod": "webpack --config webpack-config-prod.ts",
"webpack-dev": "webpack --config webpack-config-dev.ts",
"webpack-watch": "webpack --watch --config webpack-config-dev.ts",
"test": "jest",
"test-watch": "jest --watch",
"eslint": "eslint src",
"prettier-check": "prettier --check .",
"create-release-zip": "scripts/create-release-zip.sh",
"create-release-zips": "npm run create-release-zip chrome && npm run create-release-zip firefox",
"assemble-release-files": "scripts/assemble-release-files.sh"
},
"author": "Hal Blackburn",
"license": "MIT",
"devDependencies": {
"@preact/signals": "^1.1.1",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/preact": "^3.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@tsconfig/recommended": "^1.0.1",
"@types/chrome": "^0.0.206",
"@types/css": "^0.0.33",
"@types/jest": "^29.0.1",
"@types/lodash.countby": "^4.6.7",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isequal": "^4.5.6",
"@types/opentype.js": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"autoprefixer": "^10.4.9",
"copy-webpack-plugin": "^11.0.0",
"css": "^3.0.0",
"css-loader": "^6.7.1",
"css-selector-parser": "^1.4.1",
"eslint": "^8.25.0",
"eslint-config-preact": "^1.3.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lodash.countby": "^4.6.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"memoize-one": "^6.0.0",
"node-fetch": "^2",
"opentype.js": "^1.3.4",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"posthog-js": "^1.40.2",
"preact": "^10.11.0",
"prettier": "^2.8.1",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
}
}