This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "next-ts-starter",
"version": "2.0.0",
"author": "Justin Juno <[email protected]>",
"description": "A Next + TypeScript Starter by Justin Juno.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "playwright test --reporter=list",
"test:report": "playwright show-report",
"clean": "rm -rf package-lock.json && rm -rf .next && rm -rf node_modules && npm i"
},
"dependencies": {
"@axe-core/react": "^4.3.2",
"clsx": "^1.2.1",
"fathom-client": "^3.4.0",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@playwright/test": "^1.23.3",
"@types/node": "^17.0.14",
"@types/react": "17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.4.8",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.16",
"postcss-focus-visible": "^7.1.0",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwindcss": "^3.1.8",
"ts-node": "^10.4.0",
"typescript": "4.5.5"
}
}