-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.72 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
{
"name": "all-gnome-backgrounds",
"version": "0.0.0",
"description": "Get all gnome backgrounds",
"author": {
"name": "Zebreus",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Zebreus/all-gnome-backgrounds"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/eslint": "^8.4.6",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/react": "18.0.28",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@zebreus/resolve-tspaths": "^0.8.10",
"eslint": "^8.23.1",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tsc-files": "^1.1.3",
"typescript": "^4.8.3"
},
"scripts": {
"lint": "tsc --noEmit && prettier . --check && eslint --cache --ignore-path .gitignore --ext ts,js,tsx,jsx .",
"build": "rm -rf dist && tsc -p tsconfig.build.json && resolve-tspaths -p tsconfig.build.json && sed '1s;^;#!/usr/bin/env node\\\\n;' dist/index.js -i && chmod a+x dist/index.js",
"prepack": "pinst --disable && sed '1s;^;#!/usr/bin/env node\\\\n;' dist/index.js -i && chmod a+x dist/index.js",
"format": "prettier --write .",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"postinstall": "husky install",
"postpack": "pinst --enable",
"start": "node --loader ts-node/esm --loader @zebreus/resolve-tspaths/esm 'index.js'",
"prepareImages": "rm -rf public/images && mkdir -p public && cp -r data/images public/images",
"prepareThumbnails": "rm -rf public/thumbs500 public/thumbs250 && mkdir -p public/thumbs500 public/thumbs250 && mogrify -format webp -path public/thumbs500 -thumbnail '500x500>' -quality 90 public/images/*.webp && mogrify -format webp -path public/thumbs250 -thumbnail '250x250>' -quality 90 public/images/*.webp",
"prepareJson": "cp data.ts.template src/data.ts && cat data/results.json >> src/data.ts ; cp hashes.ts.template src/hashes.ts && cat data/hashes.json >> src/hashes.ts"
},
"files": [
"dist/**"
],
"keywords": [
"cli",
"application",
"interactive"
],
"main": "dist/index.js",
"bin": {
"all-gnome-backgrounds": "dist/index.js"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"next": "12",
"next-superjson": "^0.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"superjson": "^1.12.2"
}
}