generated from resir014/nextjs-typescript-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 KB
/
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
34
35
36
37
38
39
40
41
{
"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 <resir014@gmail.com>",
"license": "Unlicense",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" \"*.config.js\"",
"now-build": "cross-env BUILD_TARGET=serverless next build",
"test": "npm run type-check && npm run lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"date-fns": "^2.16.1",
"modern-normalize": "^1.0.0",
"next": "^10.0.4",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/node": "^14.14.17",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-jsx": "^2.2.8",
"cross-env": "^7.0.3",
"eslint": "7.16.0",
"eslint-config-blvd": "^1.1.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}