forked from loki315zx/avif.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
{
"name": "avif.io",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "npx cross-env ANALYZE=true next build",
"convert": "cd utils && node sharp && cd ../",
"lint": "rustywind . --write && prettier --write . && next lint --fix --dir pages --dir components",
"wasm": "cd conversion && npx cross-env NODE_ENV=production webpack",
"release": "npm run build && next-sitemap --config next-sitemap.config.js && next export && cd utils && node rss && cd ../"
},
"dependencies": {
"@mdx-js/loader": "^2.1.0",
"@next/bundle-analyzer": "^12.1.1",
"@next/mdx": "^12.1.1",
"atropos": "^1.0.2",
"firebase": "^9.6.10",
"glob": "^7.2.0",
"gray-matter": "^4.0.3",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"next": "^12.1.1",
"next-images": "^1.8.4",
"next-mdx-remote": "^4.0.2",
"preact": "^10.6.6",
"pretty-bytes": "^6.0.0",
"react": "^17.0.2",
"react-compare-image": "^3.1.0",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.4",
"react-schemaorg": "^2.0.0",
"react-syntax-highlighter": "^15.5.0",
"reading-time": "^1.5.0",
"remark-code-titles": "^0.1.2",
"remark-slug": "^7.0.1",
"schema-dts": "^1.1.0",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/sharp": "^0.30.0",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"eslint": "8.12.0",
"eslint-config-next": "12.1.1",
"front-matter": "^4.0.2",
"next-compose-plugins": "^2.2.1",
"next-sitemap": "^2.5.10",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"rehype": "^12.0.1",
"responsive-loader": "^2.3.0",
"rss": "^1.2.2",
"rustywind": "^0.13.0",
"sharp": "^0.30.3",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2"
}
}