forked from catnose99/team-blog-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 982 Bytes
/
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
{
"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"
},
"dependencies": {
"dayjs": "^1.9.3",
"next": "9.5.5",
"react": "16.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
"@types/node": "^14.11.10",
"@types/react-dom": "^16.9.8",
"@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",
"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": "^9.0.0",
"typescript": "^4.0.3"
}
}