-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 857 Bytes
/
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
{
"name": "svd-client-sample",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"prettier:check": "prettier --check '**/*.{js,jsx,ts,tsx,css,scss,html,json,md}'",
"prettier:fix": "prettier --write '**/*.{js,jsx,ts,tsx,css,scss,html,json,md}'"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"bootstrap": "^5.3.3",
"dayjs": "^1.11.13",
"html-react-parser": "^5.2.1",
"next": "15.1.3",
"normalize.css": "^8.0.1",
"react": "19.0.0",
"react-bootstrap": "^2.10.7",
"react-dom": "19.0.0",
"react-redux": "^9.2.0",
"react-select": "^5.9.0",
"redux-persist": "^6.0.0",
"redux-state-sync": "^3.1.4",
"sass": "^1.83.0"
},
"devDependencies": {
"prettier": "^3.4.2"
}
}