-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2 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
71
72
73
74
75
76
77
78
79
80
{
"name": "quechall",
"version": "0.5.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.10",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cookie-parser": "~1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.18.2",
"express-rate-limit": "^6.6.0",
"helmet": "^6.0.0",
"hpp": "^0.2.3",
"install": "^0.13.0",
"joi": "^17.6.3",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.8.0",
"npm": "^9.1.2",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.3.0",
"react-syntax-highlighter": "^15.5.0",
"reflect-metadata": "^0.1.13",
"sanitize-html": "^2.7.0",
"sass": "^1.53.0",
"typeorm": "^0.3.10",
"uuid": "^9.0.0",
"web-vitals": "^3.0.3"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"express-status-monitor": "^1.3.4",
"nodemon": "^2.0.20",
"react-scripts": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"start": "nodemon --exec ts-node app.ts",
"start-client": "react-scripts start",
"start-production": "ts-node app.ts",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
}
}