-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
{
"name": "rsclone",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"server": "node backEnd/server.mjs",
"dev-server": "nodemon backEnd/server.mjs",
"dev-all": "nodemon backEnd/server.mjs | vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^1.9.2",
"@types/express-ws": "^3.0.1",
"@types/ws": "^8.5.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"clsx": "^1.2.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-validator": "^6.14.3",
"express-ws": "^5.0.2",
"formik": "^2.2.9",
"gh-pages": "^5.0.0",
"jsonwebtoken": "^9.0.0",
"middleware-async": "^1.3.5",
"mongoose": "^6.9.0",
"node-captcha-generator": "^0.0.1",
"nodemailer": "^6.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"ws": "^8.12.1",
"yup": "^0.32.11",
"zustand": "^4.3.2"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^3.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ml-matrix": "^6.10.4",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"typescript": "^4.9.5",
"vite": "^4.0.0"
}
}