-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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
{
"name": "occ-api-utils",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "jest",
"start": "next start",
"serve": "next build && next start",
"production": "next build && next export",
"prettier:check": "yarn prettier --check .",
"prettier:fix": "yarn prettier --write .",
"export": "next export",
"lint": "next lint",
"lint:fix": "next lint --fix"
},
"dependencies": {
"@heroicons/react": "2.1.1",
"@reduxjs/toolkit": "2.0.1",
"axios": "1.6.5",
"cookies-next": "^4.1.0",
"crypto-js": "4.2.0",
"dayjs": "1.11.10",
"flowbite": "2.2.1",
"flowbite-react": "0.7.2",
"jsencrypt": "^3.3.2",
"next": "14.0.4",
"postcss": "8.4.33",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^9.1.0",
"redux-persist": "^6.0.0",
"redux-saga": "1.3.0",
"tailwindcss": "3.4.1",
"xlsx": "0.18.5"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18",
"autoprefixer": "10.4.16",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"redux-logger": "3.0.6",
"typescript": "^5"
}
}