-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.73 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-diary-backend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"express-validator": "^7.2.0",
"framer-motion": "^11.0.24",
"helmet": "^7.1.0",
"jest": "^27.5.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"localforage": "^1.10.0",
"match-sorter": "^6.3.4",
"mockingoose": "^2.16.2",
"mongoose": "^8.3.2",
"nodemailer": "^6.9.13",
"nodemon": "^3.1.0",
"path-browserify": "^1.0.1",
"quill": "^2.0.2",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-bootstrap-validation": "^0.1.11",
"react-datepicker": "^7.2.0",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"react-router-dom": "^6.22.3",
"react-scripts": "^5.0.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"sort-by": "^1.2.0",
"supertest": "^7.0.0",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4",
"winston": "^3.14.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test-react": "react-scripts test",
"eject": "react-scripts eject",
"test": "jest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@eslint/js": "^9.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.0.0",
"identity-obj-proxy": "^3.0.0",
"typescript-eslint": "^7.7.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"roots": [
"<rootDir>/server"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[tj]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"setupFiles": ["<rootDir>/server/jest.setup.js"]
}
}