-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 892 Bytes
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 892 Bytes
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
{
"name": "reactstream-codebase",
"version": "1.0.0",
"description": "Code management service with Git integration for ReactStream",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"express-session": "^1.18.0",
"isomorphic-git": "^1.25.1",
"jsonwebtoken": "^9.0.2",
"memorystore": "^1.6.7",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.6",
"simple-git": "^3.22.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
},
"engines": {
"node": ">=16.0.0"
}
}