-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 992 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 992 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
39
40
{
"name": "risevest-backend-test",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"test": "jest --watchAll --detectOpenHandles"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express-session": "^1.17.7",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"connect-redis": "^7.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"formidable": "^3.5.0",
"pbkdf2-password": "^1.2.1",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"redis": "^4.6.8"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/formidable": "^3.4.1",
"@types/jest": "^29.5.3",
"jest": "^29.6.3",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}