-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "languagemastersrc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"cd server && nodemon index.js\" \"cd client && npm start\"",
"test": "jest --watchAll --verbose --config jest.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.3.3",
"client": "^0.0.1",
"cors": "^2.8.5",
"express": "^4.18.3",
"mongodb": "^6.4.0",
"mongoose": "^8.2.1",
"react-bootstrap": "^2.10.2",
"react-router-dom": "^6.22.3",
"socket.io-client": "^4.7.5",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"concurrently": "^8.2.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"jest.setup.js"
]
}
}