-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
33 lines (33 loc) · 881 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
{
"name": "personal-webpage-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write {components/**/*,pages/**/*,styles/**/*}.{js,jsx,ts,tsx,json,scss}",
"ts-lint": "tsc --noEmit --incremental --watch"
},
"dependencies": {
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@apollo/client": "^3.8.8",
"@emailjs/browser": "^3.11.0",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.4",
"graphql": "^16.8.1",
"prettier": "^3.1.1",
"react-loader-spinner": "^6.1.0",
"react-toastify": "^9.1.3",
"sass": "^1.69.5",
"typescript": "^5.3.3"
}
}