-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.72 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.72 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
45
46
47
48
49
50
51
52
{
"name": "han-nextts-quickstart",
"version": "1.0.0",
"description": "Get started on Next.js with TypeScript by just a single click",
"main": "N/A",
"repository": "git@github.com:hanihusam/han-nextts-quickstart.git",
"author": "Hani Husamuddin <hani.husam@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\"",
"netlify-export": "yarn build && next export",
"now-build": "cross-env BUILD_TARGET=serverless next build",
"test": "npm run type-check && npm run lint",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint"
},
"dependencies": {
"next": "11.1.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@netlify/plugin-lighthouse": "^2.1.2",
"@netlify/plugin-nextjs": "^3.9.0",
"@types/node": "^16.7.8",
"@types/react": "17.0.19",
"@types/react-dom": "^17.0.9",
"@types/styled-jsx": "^3.4.4",
"eslint": "7.32.0",
"eslint-config-kentcdodds": "^19.1.1",
"eslint-config-next": "11.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"netlify-plugin-cache-nextjs": "^1.6.1",
"netlify-plugin-image-optim": "^0.4.0",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"typescript": "4.4.2"
}
}