-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "resume",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "npm@12.0.1",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"lint": "npm run lint:fix",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"pre-commit": "run-p lint:check prettier:check tsc && npm run build",
"prettier": "npm run prettier:fix",
"prettier:check": "prettier --check \"**/*.{css,js,jsx,mjs,ts,tsx,scss}\"",
"prettier:fix": "prettier --write \"**/*.{css,js,jsx,mjs,ts,tsx,scss}\"",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"next": "^16.2.12",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.23",
"prettier": "^3.9.6",
"turbo": "^2.10.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0"
}
}