-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "with-typescript-eslint-jest",
"author": "@agctyz",
"license": "MIT",
"version": "1.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint src --fix",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"dependencies": {
"next": "12.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass": "^1.49.9"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"autoprefixer": "^10.4.2",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3"
}
}