-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 723 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 723 Bytes
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
{
"name": "website-template-ts",
"version": "1.0.0",
"author": "Joshua Guo",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "next lint --fix --dir src",
"prettier": "prettier -l \"./src/**/*.{ts,tsx}\"",
"lint": "yarn prettier && yarn eslint"
},
"dependencies": {
"@types/node": "^18.14.0",
"next": "^13.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.4"
}
}