-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "cowlar-design-and-studio-task",
"version": "1.0.0",
"description": "",
"main": "Server.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "node Server.js",
"server": "nodemon Server.js",
"client": "npm start --prefix ./client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"chai": "^4.3.7",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.3.0",
"morgan": "^1.10.0",
"nodemon": "^1.14.9",
"react": "^18.2.0",
"request": "^2.88.2",
"sinon": "^15.2.0",
"supertest": "^6.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.21.5",
"@babel/register": "^7.6.2",
"babel-jest": "^29.5.0",
"esm": "^3.2.25",
"jest": "^25.0.0"
}
}