-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.75 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
{
"name": "miyaoka.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"new": "date +%Y-%m-%d-.md | xargs code",
"dev": "next dev",
"lint": "next lint",
"build:rss": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} ts-node ./src/scripts/rss.ts",
"build:sitemap": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} ts-node ./src/scripts/sitemap.ts",
"build": "next build",
"build:export": "next export",
"export": "run-s build build:rss build:sitemap build:export",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"blueimp-md5": "^2.18.0",
"date-fns-timezone": "^0.1.4",
"gray-matter": "^4.0.2",
"is-url": "^1.2.4",
"next": "^11.1.1",
"postcss": "^8.2.8",
"postcss-nested": "^5.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark": "^13.0.0",
"remark-external-links": "^8.0.0",
"remark-html": "^13.0.1",
"tailwindcss": "^2.0.3",
"unist-util-is": "^4.1.0",
"unist-util-visit-parents": "^3.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.8",
"@types/blueimp-md5": "^2.18.0",
"@types/is-url": "^1.2.28",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.33",
"@types/react": "^17.0.3",
"@types/rss": "^0.0.28",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-next": "^11.0.1",
"nextjs-sitemap-generator": "^1.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rss": "^1.2.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.4"
}
}