forked from catnose99/team-blog-hub
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"dev": "next dev",
"build": "run-s build:posts build:feed build:next",
"build:posts": "ts-node --project tsconfig.builder.json ./src/builder/posts.ts",
"build:feed": "NODE_ENV=production ts-node --project tsconfig.builder.json ./src/builder/feed.ts",
"build:next": "next build",
"start": "next start",
"export": "next export",
"typecheck": "tsc --noEmit",
"format:fix": "prettier --write ."
},
"dependencies": {
"dayjs": "^1.9.3",
"next": "^13.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
"@types/node": "^18.14.2",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"feed": "^4.2.2",
"fs-extra": "^9.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rss-parser": "^3.9.0",
"sass": "^1.27.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}