-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.91 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "upstream",
"homepage": "https://upstream.force11.org",
"version": "1.0.1",
"description": "Upstream is the frontend for the FORCE11 blog.",
"repository": "https://github.com/force11/upstream",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@cypress/react": "^5.10.0",
"@formatjs/intl-numberformat": "^7.1.4",
"@fortawesome/fontawesome-free": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "0.1.16",
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.1",
"@popperjs/core": "^2.9.2",
"@sentry/browser": "^6.14.0",
"@sentry/nextjs": "^6.15",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.0",
"@tryghost/admin-api": "^1.4.4",
"@tryghost/content-api": "^1.5.7",
"@tryghost/members-api": "^2.8.6",
"@zeit/next-css": "1.0.1",
"autocomplete.js": "^0.38.0",
"cors": "^2.8.5",
"cypress": "9.1.0",
"date-fns": "^2.22.1",
"feed": "^4.2.2",
"lodash": "^4.17.21",
"next": "^12.0.7",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.1",
"next-plausible": "^3.1.4",
"next-usequerystate": "^1.3.0",
"node-pandoc-promise": "^0.0.6",
"path": "0.12.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-html-parser": "^2.0.2",
"react-markdown": "^6.0.2",
"react-schemaorg": "^2.0.0",
"react-scripts": "^4.0.3",
"readability-cyr": "^1.0.8",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"sanitize-html": "^2.4.0",
"schema-dts": "^1.0.0",
"swr": "^1.0.1",
"typesense": "^0.14.0",
"unfetch": "4.2.0",
"uuid-encoder": "^1.2.0",
"webpack": "^5.39.0"
},
"scripts": {
"start": "next start",
"build": "next build",
"postbuild": "next-sitemap",
"build:index": "next build",
"dev": "next dev",
"lint": "next lint",
"cy:open": "cypress open",
"cy:run": "cypress run",
"install:pandoc": "cd /home && yum install wget tar gzip texlive-xetex -y && wget https://github.com/jgm/pandoc/releases/download/2.12/pandoc-2.12-linux-amd64.tar.gz && tar -xvf pandoc-2.12-linux-amd64.tar.gz && ln -s /home/pandoc-2.12/bin/pandoc /usr/bin/pandoc && pandoc -v",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm run build:tailwind && npm run dev",
"build:tailwind": "tailwind build assets/styles/index.css -o assets/styles/tailwind.css",
"export": "next export",
"deploy": "rm -rf node_modules/ && rm -rf package-lock.json && rm -rf .next/ && rm -rf out/ && npm install && npm run build:tailwind && npm run build && npm run export && cp -r ./assets ./out/assets && touch out/.nojekyll && git add . && git commit -m \"ready to deploy\" && git push && git subtree push --prefix out origin gh-pages"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"@types/markerclustererplus": "2.1.33",
"@types/react": "^17.0.1",
"typescript": "4.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"autoprefixer": "^10.4.1",
"current-git-branch": "^1.1.0",
"eslint": "^7.29.0",
"eslint-config-next": "12.0.1",
"eslint-plugin-react-hooks": "^4.3.0",
"js-yaml-loader": "^1.2.2",
"next-sitemap": "^1.6.116",
"pandoc-url2cite": "^0.6.7",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.8"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}