-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "unbound-nextjs-template",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0",
"npm": "you-need-to-use-yarn"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint -- --fix",
"test": "jest --watch",
"test:ci": "jest --ci",
"e2e:dev": "npx playwright test --config=playwright.dev.config.ts",
"check-types": "tsc --pretty --noEmit",
"format": "prettier --write ./src/*"
},
"dependencies": {
"clsx": "^1.1.1",
"flag-icons": "^6.5.1",
"js-cookie": "^3.0.1",
"next": "^12.1.6",
"next-i18next": "^11.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.39.1"
},
"devDependencies": {
"@evilmartians/lefthook": "^0.8.0",
"@playwright/test": "^1.22.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/js-cookie": "^3.0.2",
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.2",
"eslint-plugin-testing-library": "^5.5.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"msw": "^0.42.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.2",
"typescript": "^4.7.3",
"whatwg-fetch": "^3.6.2"
}
}