-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "next-boilerplate",
"private": true,
"description": "My starter template for NextJS with TypeScript.",
"homepage": "https://github.com/mikestecker/next-boilerplate#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mikestecker/next-boilerplate.git"
},
"author": "Mike Stecker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikestecker/next-boilerplate/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"build-stats": "ANALYZE=true yarn build",
"export": "next build && next export -o dist",
"build-prod": "run-s clean build export",
"clean": "rimraf .next dist",
"lint": "next lint",
"format": "prettier-eslint --write $PWD/'**/*.{ts,tsx}'",
"prepare": "husky install",
"test": "jest --passWithNoTests",
"typecheck": "concurrently --raw yarn:typecheck:*",
"typecheck:app": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@heroicons/react": "^2.0.16",
"clsx": "^1.2.1",
"next": "^13",
"next-sitemap": "^4.0.6",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.2.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.5.0",
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.2.3",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": ">=8",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": ">=13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-eslint-cli": "^7.1.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.4.0",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"browserslist": [
">0.2%",
"not dead",
"not IE 11"
]
}