-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"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": {
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.3.2",
"axios": "^0.21.4",
"firebase": "^9.0.2",
"next": "11.1.0",
"postcss": "^8.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"sass": "^1.38.0",
"swiper": "^7.0.6",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/react": "^17.0.19",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-tailwind": "^0.2.1",
"eslint-plugin-unused-imports": "^1.1.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.3.5"
}
}