generated from yuminn-k/yuminnk-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "yuminnk-nextjs-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "node -e \"if (process.env.NODE_ENV !== 'production') require('husky').install()\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@tanstack/react-query": "^5.17.10",
"@types/event-source-polyfill": "^1.0.5",
"@types/js-cookie": "^3.0.6",
"@types/webrtc": "^0.0.44",
"axios": "^1.6.5",
"date-fns": "^3.6.0",
"event-source-polyfill": "^1.0.31",
"ion-sdk-js": "^1.8.2",
"js-cookie": "^3.0.5",
"mediasoup-client": "^3.7.17",
"moment": "^2.30.1",
"next": "^14.2.7",
"react": "^18",
"react-calendar": "^4.8.0",
"react-dom": "^18",
"react-infinite-scroller": "^1.2.6",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^9.0.1",
"react-pdf": "^7.7.0",
"react-time-picker": "^7.0.0",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"simple-peer": "^9.11.1",
"socket.io-client": "^4.8.1",
"swiper": "^11.1.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-infinite-scroller": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"autoprefixer": "^10.0.1",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"gts": "^5.2.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.1",
"typescript": "5.1.6"
}
}