-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
34 lines (34 loc) · 840 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
{
"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"
},
"dependencies": {
"dayjs": "^1.11.0",
"next": "12.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.23",
"@types/react-dom": "^17.0.14",
"eslint": "^8.12.0",
"eslint-config-next": "12.1.2",
"fs-extra": "^10.0.1",
"npm-run-all": "^4.1.5",
"rss-parser": "^3.12.0",
"sass": "^1.49.9",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"license": "MIT"
}