-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "shoestore",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"eslintConfig": {
"extends": "next"
},
"browserslist": [
"chrome 64",
"edge 79",
"firefox 67",
"opera 51",
"safari 12"
],
"dependencies": {
"@next-auth/mongodb-adapter": "^1.1.3",
"@reduxjs/toolkit": "^2.8.2",
"@types/jsonwebtoken": "^9.0.9",
"bcryptjs": "^3.0.2",
"cookie": "^1.0.2",
"cookies-next": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongo-sanitize": "^1.1.0",
"mongodb": "^6.16.0",
"mongoose": "^8.15.0",
"next": "15.3.2",
"next-auth": "^4.24.11",
"next-redux-wrapper": "^8.1.0",
"react": "19.1.0",
"react-cookie": "^8.0.1",
"react-dom": "19.1.0",
"react-redux": "^9.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^3.1.0",
"typescript": "^5.8.3",
"validator": "^13.15.0"
},
"devDependencies": {
"@swc/cli": "^0.7.7",
"@swc/core": "^1.11.29",
"@types/bcryptjs": "^3.0.0",
"@types/cookie": "^1.0.0",
"@types/mongo-sanitize": "^1.0.3",
"@types/node": "^22.15.21",
"@types/react": "^19.1.5",
"@types/validator": "^13.15.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"autoprefixer": "^10.4.21",
"axios": "^1.9.0",
"bootstrap": "^5.3.6",
"eslint": "9.27.0",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "^10.1.5",
"postcss": "^8.5.3",
"postcss-preset-env": "^10.1.6",
"prettier": "^3.5.3",
"react-bootstrap": "^2.10.10",
"sass": "^1.89.0",
"stylelint": "^16.19.1"
}
}