This repository has been archived by the owner on Dec 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.41 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": "typedsh-blog",
"version": "1.0.2",
"main": "index.js",
"author": "Seia-Soto <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export && yarn static",
"serve": "serve out",
"lint": "eslint --ext .js",
"update": "yarn update:upstream && yarn update:submodules",
"update:prepare": "git add remote upstream https://github.com/typed-sh/blog.git",
"update:upstream": "git stash && git pull upstream master && git stash apply && git stash drop",
"update:submodules": "git submodule init && git submodule update --remote --merge",
"release": "standard-version",
"release:first": "standard-version --first-release",
"release:pre": "standard-version --prerelease",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"static": "yarn sitemap && yarn mkstatic && yarn packstatic",
"sitemap": "yarn node scripts/sitemap",
"mkstatic": "yarn node scripts/mkstatic",
"packstatic": "yarn node scripts/packstatic"
},
"dependencies": {
"@chakra-ui/react": "^1.3.3",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/runtime": "^1.6.22",
"crypto-js": "^4.0.0",
"dayjs": "^1.10.4",
"esm": "^3.2.25",
"framer-motion": "^3.6.7",
"gray-matter": "^4.0.2",
"js-yaml": "^4.0.0",
"js-yaml-loader": "^1.2.2",
"mime-types": "^2.1.29",
"next": "^10.0.7",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.7.0",
"next-seo": "^4.20.0",
"prism-react-renderer": "^1.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga": "^3.3.0",
"react-icons": "^4.2.0",
"sitemap": "^6.4.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"serve": "^11.3.2",
"standard-version": "^9.1.1"
}
}