-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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": "nextjs-template",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"@types/jsonwebtoken": "^9.0.6",
"aos": "^2.3.4",
"axios": "^1.6.7",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.1",
"next": "14.1.0",
"pg": "^8.12.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-redux": "^9.1.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/aos": "^3.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/pg": "^8.11.8",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"sass": "^1.70.0",
"typescript": "^5"
}
}