-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.61 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
74
75
76
{
"name": "@outcrawl/site",
"version": "3.0.0",
"license": "MIT",
"scripts": {
"prebuild": "npm run prebuild:images && npm run prebuild:pwa",
"prebuild:images": "cpy 'articles/**/*.(jpg|gif)' './public/articles' --cwd=./data",
"prebuild:pwa": "pwa-asset-generator ./public/logo.svg ./public/icons --favicon --mstile --opaque false --type png --log false",
"build": "next build && next export && next-image-export-optimizer",
"clean": "rimraf ./.turbo ./.next ./out ./public/articles ./public/icons ./public/nextImageExportOptimizer ./public/next-image-export-optimizer-hashes.json",
"dev": "next dev -p 3000",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.81",
"@mui/material": "^5.7.0",
"@mui/system": "^5.7.0",
"core-js": "^3.22.5",
"escape-html": "^1.0.3",
"gray-matter": "^4.0.3",
"hast": "^1.0.0",
"hast-util-to-string": "^2.0.0",
"katex": "^0.16.0",
"next": "13.5.6",
"next-image-export-optimizer": "^0.10.1",
"next-mdx-remote": "^4.0.3",
"parse-numeric-range": "^1.3.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-google-recaptcha": "^2.1.0",
"refractor": "^4.7.0",
"rehype-img-size": "^1.0.1",
"rehype-katex": "^6.0.2",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"slug": "^5.3.0",
"unist-util-filter": "^4.0.0",
"unist-util-visit": "^4.1.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
"@emotion/babel-plugin": "^11.9.2",
"@svgr/webpack": "^6.2.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/escape-html": "^1.0.2",
"@types/node": "17.0.33",
"@types/react": "18.0.9",
"@types/react-dom": "^18.0.4",
"@types/react-google-recaptcha": "^2.1.5",
"@types/slug": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"copy-webpack-plugin": "^11.0.0",
"cpy-cli": "^4.1.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"prettier": "^2.6.2",
"pwa-asset-generator": "^6.1.0",
"rimraf": "^3.0.2",
"typescript": "4.6.4"
}
}