-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "nextjs-typescript-quickstart",
"version": "1.0.0",
"description": "Get started on Next.js with TypeScript in seconds.",
"main": "N/A",
"repository": "https://github.com/resir014/nextjs-typescript-quickstart",
"author": "Resi Respati <[email protected]>",
"license": "Unlicense",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\"",
"now-build": "cross-env BUILD_TARGET=serverless next build",
"test": "npm run type-check && npm run lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.14.5",
"@types/node": "^14.14.17",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"cross-env": "^7.0.3",
"eslint": "8.26.0",
"eslint-config-kentcdodds": "^20.4.0",
"eslint-config-next": "^13.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}