-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "public-site",
"description": "my personal portfolio/resume site",
"version": "1.0.0",
"private": true,
"author": "daniel demelo, @pdx-daniel",
"license": "MIT",
"keywords": [
"typescript",
"nextjs",
"portfolio"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier . --write",
"format:ci": "prettier --list-different ."
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint \"src/**/*.+(ts|js|tsx)\" --fix",
"prettier . --write"
]
},
"dependencies": {
"motion": "12.0.0-alpha.2",
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106"
},
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.14.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@types/node": "22.9.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.14.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-sort-json": "4.0.0",
"typescript": "5.6.3"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}
}