forked from catnose99/team-blog-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "run-s build:posts build:next",
"build:posts": "ts-node --project tsconfig.builder.json ./src/builder/posts.ts",
"build:next": "next build",
"start": "next start",
"lint": "next lint",
"fix": "yarn format && yarn lint:fix",
"format": "prettier --write ./src/**/**/*.{js,jsx,ts,tsx}"
},
"dependencies": {
"dayjs": "^1.9.3",
"next": "^12.1.5",
"next-themes": "^0.0.15",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
"@types/node": "^16.11.1",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"fs-extra": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rss-parser": "^3.9.0",
"sass": "^1.27.0",
"ts-node": "^10.3.0",
"typescript": "^4.0.3"
}
}