-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.21 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
{
"name": "travelmakers-nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true yarn build",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"stylelint": "stylelint **/*.scss",
"postinstall": "husky install && chmod ug+x .husky/*",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "yarn test --coverage"
},
"dependencies": {
"@tanstack/react-query": "^5.20.5",
"@tanstack/react-query-devtools": "^5.20.5",
"@tanstack/react-query-next-experimental": "^5.20.5",
"axios": "^1.6.5",
"clsx": "^2.1.0",
"next": "^14.1.0",
"next-auth": "^4.24.5",
"react": "^18",
"react-dom": "^18",
"zustand": "^4.4.7"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-angular": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@lhci/cli": "^0.13.0",
"@next/bundle-analyzer": "^14.0.4",
"@next/eslint-plugin-next": "^14.0.4",
"@tanstack/eslint-plugin-query": "^5.17.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"postcss-scss": "^4.0.9",
"prettier": "^3.1.1",
"sass": "^1.69.6",
"stylelint": "15",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-recommended-scss": "13",
"stylelint-config-standard": "34",
"stylelint-config-standard-scss": "11",
"stylelint-order": "^6.0.4",
"stylelint-scss": "5",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"packageManager": "[email protected]"
}