forked from catnose99/timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "timeline",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "run-s build:items build:next",
"build:items": "ts-node --project tsconfig.builder.json ./src/json-builder.ts",
"build:next": "next build",
"start": "next start"
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"dayjs": "^1.10.4",
"next": "^13.4.9",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.32.8",
"zod": "^1.11.11"
},
"devDependencies": {
"@types/fs-extra": "^9.0.7",
"@types/google-spreadsheet": "^3.0.2",
"@types/node": "^14.14.31",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^9.1.0",
"google-spreadsheet": "^3.1.15",
"npm-run-all": "^4.1.2",
"prettier": "^2.2.1",
"rss-parser": "^3.12.0",
"scss": "^0.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}