-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
65 lines (65 loc) · 2.22 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
{
"name": "avif.io",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"bundle": "ANALYZE=true npm run build",
"convert": "cd utils && node sharp && cd ../",
"lint": "rustywind . --write && prettier --write . && next lint --fix --dir pages --dir components && eslint . --ext .js --ext .tsx",
"develop": "npm run build && next export && cd conversion && npx cross-env NODE_ENV=production webpack && cd ../ && npm run dev",
"release": "npm run build && next export && cd conversion && npx cross-env NODE_ENV=production webpack && cd ../ && next-sitemap --config next-sitemap.config.js && firebase deploy"
},
"dependencies": {
"@next/bundle-analyzer": "^11.0.1",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"jszip": "^3.7.0",
"lodash": "^4.17.21",
"next": "^11.0.1",
"next-images": "^1.8.1",
"next-sitemap": "^1.6.140",
"preact": "^10.5.14",
"preact-compat": "^3.19.0",
"pretty-bytes": "^5.6.0",
"react": "^17.0.2",
"react-compare-image": "^3.1.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-schemaorg": "^2.0.0",
"react-syntax-highlighter": "^15.4.4",
"schema-dts": "^0.9.0"
},
"devDependencies": {
"@types/jszip": "^3.4.1",
"@types/lodash": "^4.14.171",
"@types/node": "^16.4.2",
"@types/pretty-bytes": "^5.2.0",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-dropzone": "^5.1.0",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/sharp": "^0.28.4",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"autoprefixer": "^10.3.1",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"responsive-loader": "^2.3.0",
"rustywind": "^0.12.2",
"sharp": "^0.28.3",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.2"
}
}